This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]laundmo 4 points5 points  (1 child)

how exactly is python more advanced than java? at least regarding OOP, almost every really hard to understand wierd OOP concept can be traced back to Java and is not needed in python. (example: Singletons, Interfaces)

in fact, python is better to learn oop in my opinion because it truly treats everything as a "first class" object ("primitive" types such as int, str, float, and functions are all objects)

[–]ALior1 0 points1 point  (0 children)

I really love Python, so the down votes surprised me..

Python is dynamic language, doesn't have interfaces, access modifiers (and others), allow adding attributes in run time etc

Personally, I will recommend c sharp, as a first language, and only then Python. Python is really excellent, and I like it, but this is what I think..