Name: Anonymous 2010-05-28 16:52
Python is so much easier to use.
Java requires either a bracket or a semicolon on every single fucking line. In Python, just indent.
System.out.println("foo") vs print "foo"
Arrays can only store objects of a single type and
must have a specified size while lists in Python have neither of these restrictions
Why must you specify the type of the variable when you're declaring it? Why can't Java figure out something so simple?
The "for loop" in Python iterates over all the elements in the object. In Java, you must do the retarded
(int i;i<something;i++) bullshit.
Python > Java
Java requires either a bracket or a semicolon on every single fucking line. In Python, just indent.
System.out.println("foo") vs print "foo"
Arrays can only store objects of a single type and
must have a specified size while lists in Python have neither of these restrictions
Why must you specify the type of the variable when you're declaring it? Why can't Java figure out something so simple?
The "for loop" in Python iterates over all the elements in the object. In Java, you must do the retarded
(int i;i<something;i++) bullshit.
Python > Java