Which is better? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Which is better?

Which is better, Java or Python? Many say that java is harder to learn due to Python being very simple though I am a learner of Java and I don’t think it is that difficult, i’d like to hear your perspectives.

19th Nov 2022, 10:31 PM
Unknown Unknown
2 Answers
0
What you think is best for you is what matters. Then, with ”better” and ”simple” it depends on what you mean. Both codes below prints “Hello world”, but I think most people would agree which of them that is the simpliest one to understand as a newbie. # Java class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } } # Python print("Hello World!")
19th Nov 2022, 11:49 PM
Per Bratthammar
Per Bratthammar - avatar
0
Hi! the best at what? In study or practical application? each language is designed for its own specific direction in programming
20th Nov 2022, 6:26 AM
Yaroslav Vernigora
Yaroslav Vernigora - avatar