SearchWiki:
  7 User(s) Active on Site
  233 Wiki Pages

Most Recently Modified

Club Resources (edit)

How This Wiki Works

Meeting space complements of:
Computer books
            and technical books at discount prices
Check them out; they are a great source of technical books at very good prices!

If you have shopped at Nerdbooks.com, help them out by reviewing them at ResellerRatings.com. You will need your invoice number to prove you are a real customer, and not just ballot stuffing.
Recent Changes Printable View Page History Edit Page
Content Last Modified on November 23, 2005, at 06:02 PM CST

General Observations about the Language

Python is dynamically but strongly typed.

We say Python is dynamically typed because we pass around references and don't check the type until the last possible minute.

We say it is strongly typed because objects don't change type. Variable names are not objects but references to objects.

Python has a feature of dynamic languages, that of "duck typing". The idea is that it doesn't actually matter what type my data is - just whether or not I can do what I want with it. So if it walks like a duck and quacks like a duck, it is a duck.

Recent Changes Printable View Page History Edit Page