May 16, 2013

Python Basics


Why Python ?

 - Efficient High-Level Data-structures.
    - Tupples
    -  Lists
    - Dictionaries
    - Sets


- Simple Object Oriented Approach

- Elegant Syntax
   a = "hi %s" % "Dave"

- Dynamic Typing
  - i.e. type-checks are performed at run time


sys.exit(0)