December 2009
Beginner to intermediate
360 pages
11h 12m
English
This chapter covers
By now, you’ve learned the basic Python types and also how to create your own data types using classes. For many languages, that would be pretty much it, as far as data types are concerned. But Python is dynamically typed, meaning that types of things are determined at runtime, not at compile time. This is one of the reasons Python is so easy to use. It also makes it possible, and sometimes necessary, to compute with the types of objects (and not just the objects themselves).
Fire up a Python session, and try out the following:
>>> type(5) <class 'int'> >>> type(['hello', ...
Read now
Unlock full access