Lecture Notes on 27 August 2014 Learning Python in one Afternoon * Write the Hello World program * Characterset - ASCII & Unicode * Variables - * Statements and Expressions * Types - implicit types int, float, bool, str * Operators - Arithmetic: + - * / // % ** - Comparison: < <= > >= == != - Boolean: not, and, or - Bitwise - Shift * Conditionals: if-else * Loops: while, for * Functions * Lists * Simple Input / Ouptut - console or files * Class