How long does it take to learn Java after Python?

How long does it take once you've really mastered Python (of course you can always learn more!) to then learn Java from scratch?

How difficult is it if you already know and have applied Python programming concepts? Has anyone here done this and has experience?

(4 votes)
Loading...

Similar Posts

Subscribe
Notify of
9 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
cleanercode
11 months ago

There is a clear difference between Python and Java: the paradigm

While Java is OO, Python can only imitate OO and is actually a procedural language.

Not the syntax becomes the problem, but the paradigm shift.

cleanercode
11 months ago
Reply to  Jeremy Edberg

It’s not hard – you just have to deal with it and get time. The OOD and its principles demand more from a programmer.

Do not be discouraged if something does not work 🙂 It’ll be fine. How long it takes depends on your motivation – the learning curve is always individual.

jo135
8 months ago
Reply to  cleanercode

While Java is OO, Python can only imitate OO and is actually a procedural language.

Python is a very consistent object-oriented language in which almost everything an object is: without exception all data types, even things like functions are classes. So this goes even further than Java.

The only difference is that Python does not force the developer to write even object-oriented programs.

cleanercode
8 months ago
Reply to  jo135

According to your description, JS would also be OO – which is of course not the case. Just because there are objects, it does not mean that the paradigm itself is OO.

Behind the OOD is far more than just a few objects.

The only difference is that Python does not force the developer to write even object-oriented programs.

Right, as I mentioned earlier, Python is not a pure OO language.

From pure curiosity: how often did you define interfaces in Python?

jo135
8 months ago

Behind the OOD is far more than just a few objects.

The usual trias of OOP properties – encapsulation, inheritance, polymorphy – are available throughout in Python. Of course, the encapsulation is only adhered to by convention. But to say that it would not be a OO language or if OO only “imitate” is already a bit steep.

From pure curiosity: how often did you define interfaces in Python?

Always because I don’t have to define nominal interfaces thanks to Duck Typing.

Is that different from Java? But that was or is also the case with Smalltalk, which is considered “the OO language”.

LUCKY1ONE
8 months ago

Programming is very fast. But the deepening of the individual language components, frameworks etc. actually takes some longer than learning the language itself.

Apart from programming, there are also different architectures and design patterns that are used. In addition, each language has its own ecosystem and various tools associated with it.

But these whole aspects, in my opinion, distinguish a programmer from a software developer.

NackterGerd
8 months ago

No one can answer such a question on a flat-rate basis