These are my personal notes from the Udacity Course on Python 3
- data types and operators
- variables
- strings and string methods
- lists and list methods
- tuples and method
- tuple unpacking
- sets
- add and pop
- dictionaries
- get() method
- identity operators
- for loops
- word count with loops and dictionaries
- key and values using items()
- while loops
- break and continue
- zip and enumerate
- list comprehension
- variable scope
- documentation
- lambda expressions
- lambda with map()
- lambda with filter()
- raw input
- errors and exceptions
- exception handling
- reading and writing files
- importing modules
- The Standard library