Why Python is quite Popular ?

Posted on

Why python is a popular programming language ?. If we compare python with another popular programming language for an example C++ or Java. There are several requirements or a minimum code to print sequence of characters exist below :

In term of C++ :

#include <iostream>
int main(int argc, char const *argv[])
{
std::cout << “Hello World”<< std::endl;
return 0;
}

In term of Java :

class Main{
public static void main(String[] args) {
System.out.println(“Hello World”);
}

On the other hand, in term of Python, it is quite easy to achieve it. It only take this following one line :

print(“Hello World”)

That is why and it is the main reason for the popularity of python especially for those who doesn’t have programming, software engineering or computer science educational background. So, according to the comparison above, the syntax or the pattern for understanding python programming language is somehow quite easy.

Leave a Reply