Examples from Think python book
- Python 3.5.2
- Jupyter notebook
- Few a small piece of python (3.5.2) examples
- Start's with GUI
- Basic Calculator
def main():
while(1):
print_menu()
decide(get_option())
Examples from Think python book
def main():
while(1):
print_menu()
decide(get_option())