Python
The first time, I looked up Python while I was interesting Java and I didn't understand why python's so popular. But I learned Python last year. I see why people like Python this much. It's very smiler and everybody may learn it quick. Also, Python's right program language for children.
There's simply a comparison between Python and Java, how to print "Hello world";
public class HelloWorld
{
public static void main (String[] args)
{
System.out.println("Hello, world!");
}
} Java
print("Hello world")
Python
So, you just see python's very basic.