0
Which programming language is best preferred to learn after learning the basics from c++?
2 Respuestas
+ 2
Unfortunately learning the syntax of a language would not make you a programmer. Choose the language you like and learn how to code on it.
+ 9
Python is undoubtedly an easier programming language to learn and use as compared to Java and C++. But since you already know a programming language, you won’t find much difficulty in learning either language. Or in the other way round, we can say that learning Python becomes even easier if you are already familiar with a language.
Java
class Hello{
public static void main(String[] args){ System.out.print("Hello World\n"); }}
C++
#include <iostream>
int main(){
std::cout << "Hello World";
return 0;}
Python
print "Hello World"
so it seems easy to work in python as compare to Java but it is all up to you you can start with any language if you know the basics of cpp