Is there any app or tutorial which helps to compare and study the differnences between syntaxes and keywords of java and python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is there any app or tutorial which helps to compare and study the differnences between syntaxes and keywords of java and python

I know c++ and now trying to study java(I just need to spot the difference between keyword like cout (in c++)=puts (in java) , respectively)

13th Feb 2020, 9:54 AM
antony rinoy
antony rinoy - avatar
2 Answers
+ 1
I truly don’t know if they exist, but to be honest I wouldn’t really know why you would need it. I’d simply go through the java tutorial. If you already know a language well it will be fast and easy enough. I have found that even though all languages are similar you still really can’t compare to similar looking functions or statements because of how they work in that specific language. plus Python has a lot of built-in funcionality you won’t find in other languages. also, not being an expert on c++ in any way or form, I’d say cout is more easily compared to System.out.println() short answer, just go through the tutorial of java
13th Feb 2020, 10:02 AM
Brave Tea
Brave Tea - avatar
+ 6
cout in c++ which is (character output) is the same as system.out.println() in java they both display something in the console window.
13th Feb 2020, 9:59 AM
D_Stark
D_Stark - avatar