Alan Gauld wrote: >>>Python is more forgiving >> >>Could you elaborate on this feature? > > > Python allows you to do things, without complaining, that Java just > won't allow.
Another way to put it is, Java is way more picky than Python. Much of this is a consequence of Python's dynamic typing - you never declare the type of anything in Python. This alone saves a ton of (finger) typing. Also exceptions in Python don't have to be declared, like unchecked exceptions in Java. It's a matter of some debate whether the extra strictness of Java provides enough safety to be worth the cost. Kent _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor