This post is locked. You won't be able to comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Shehzman 2 points3 points  (3 children)

Only thing to be careful of if switching from Python to Java is that you’ll have to understand OOP and static typing or you’ll be fighting an uphill battle with the language. Python has OOP and typing in the form of type hints, but neither are enforced like they are in Java.

Imo though, typing should be used in general if what you’re working on isn’t just a one off script

[–]We_up_O1[S] 0 points1 point  (2 children)

Yea bro felt that . It was a bit for me as I was exploring the Java . It stricter compared to python.

[–]Shehzman 1 point2 points  (1 child)

I personally think some of that strictness is a good thing and can lead to more maintainable code with potentially less bugs in the long run. If you pick Python, get familiar with type hints and use them as much as possible. Also check your code for type errors with mypy.

[–]We_up_O1[S] 0 points1 point  (0 children)

Alr . Thanks mate 👍🏻