Coursera - Getting started with Python
From MyWiki
Python commands
- quit() or ctrl + Z or exit() -ends Python on Windows.
- quit() or ctrl + D -Tells "End Of File" to Python on Mac and GNU/Linux.
- quit() or ctrl + C -Kills Python process on Mac and GNU/Linux.
Conditional Steps, repeated steps, loop
Conditional Steps - if ... elif .. else
if (expression): (command) elif (expression): (command) else: (command)