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)
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
+ 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.