Archives for the Date February 8th, 2008

Learning Python: Chapter 5

After four chapters of introductory details I finally arrived at the in-depth explanation of Python that I actually looked forward to. Here’s all I found noteworthy from a Perl programmer’s point of view.

There are functions for explicit type conversion between individual numeric types: int(3.1415), float(3), long(4).

After saying
[...]