├── .gitignore ├── LICENSE ├── README.md ├── ex.py ├── ex.sh ├── ex1.err ├── ex1.py ├── ex1.sh ├── ex10.py ├── ex10.sh ├── ex11.py ├── ex11.sh ├── ex12.py ├── ex12.sh ├── ex13.py ├── ex13.sh ├── ex14.py ├── ex14.sh ├── ex15.py ├── ex15.sh ├── ex15_sample.txt ├── ex16.py ├── ex16.sh ├── ex17.py ├── ex17.sh ├── ex18.py ├── ex18.sh ├── ex19.py ├── ex19.sh ├── ex2.py ├── ex2.sh ├── ex20.py ├── ex20.sh ├── ex21.py ├── ex21.sh ├── ex22.py ├── ex22.sh ├── ex23.py ├── ex23.sh ├── ex24.py ├── ex24.sh ├── ex25.py ├── ex25_pycon.py ├── ex26.py ├── ex26.sh ├── ex28.py ├── ex28.sh ├── ex29.py ├── ex29.sh ├── ex3.py ├── ex3.sh ├── ex30.py ├── ex30.sh ├── ex31.py ├── ex31.sh ├── ex32.py ├── ex32.sh ├── ex33.py ├── ex33.sh ├── ex34.py ├── ex34.sh ├── ex35.py ├── ex35.sh ├── ex36.py ├── ex36.sh ├── ex37.py ├── ex37.sh ├── ex38.py ├── ex38.sh ├── ex39.py ├── ex39.sh ├── ex39_dict.sh ├── ex39_pycon.py ├── ex39_test.py ├── ex4.err ├── ex4.py ├── ex4.sh ├── ex40.py ├── ex40.sh ├── ex40a.py ├── ex41.py ├── ex42.py ├── ex42.sh ├── ex42_demo.py ├── ex42_demo.sh ├── ex43.py ├── ex43.sh ├── ex43_classes.py ├── ex44a.py ├── ex44a.sh ├── ex44b.py ├── ex44b.sh ├── ex44c.py ├── ex44c.sh ├── ex44d.py ├── ex44d.sh ├── ex44e.py ├── ex44e.sh ├── ex45.py ├── ex45.sh ├── ex47.py ├── ex47.sh-session ├── ex47 ├── ex47 │ ├── __init__.py │ └── game.py ├── setup.py └── tests │ ├── __init__.py │ └── ex47_tests.py ├── ex47_tests.py ├── ex47_tests.sh ├── ex48.sh ├── ex48 ├── __init__.py ├── lexicon.py └── parser.py ├── ex48_convert.py ├── ex48_pycon.py ├── ex49.sh ├── ex49_pycon.py ├── ex49a_pycon.py ├── ex5.py ├── ex5.sh ├── ex50.py ├── ex50.sh ├── ex50 └── gothonweb │ ├── app.py │ ├── gothonweb │ └── __init__.py │ ├── templates │ └── index.html │ └── tests │ └── __init__.py ├── ex51.py ├── ex51.sh ├── ex51 └── gothonweb │ ├── app.py │ ├── bin │ └── __init__.py │ ├── form_test.py │ ├── gothonweb │ └── __init__.py │ ├── templates │ ├── hello_form.html │ ├── hello_form_laid_out.html │ ├── index.html │ ├── index_laid_out.html │ └── layout.html │ └── tests │ ├── __init__.py │ ├── app_tests.py │ └── tools.py ├── ex52.py ├── ex52.sh ├── ex52 └── gothonweb │ ├── app.py │ ├── bin │ └── __init__.py │ ├── gothonweb │ ├── __init__.py │ └── planisphere.py │ ├── templates │ ├── layout.html │ ├── show_room.html │ └── you_died.html │ └── tests │ ├── __init__.py │ ├── app_tests.py │ └── planisphere_tests.py ├── ex6.py ├── ex6.sh ├── ex7.py ├── ex7.sh ├── ex8.py ├── ex8.sh ├── ex9.py ├── ex9.sh ├── fake_input.py ├── hashmap.py ├── lexicon_tests.py ├── new_file.txt ├── skeleton ├── NAME │ └── __init__.py ├── setup.py └── tests │ ├── NAME_tests.py │ └── __init__.py └── totest.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/README.md -------------------------------------------------------------------------------- /ex.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex.sh: -------------------------------------------------------------------------------- 1 | python ex.py 2 | -------------------------------------------------------------------------------- /ex1.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex1.err -------------------------------------------------------------------------------- /ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex1.py -------------------------------------------------------------------------------- /ex1.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex1.py 2 | -------------------------------------------------------------------------------- /ex10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex10.py -------------------------------------------------------------------------------- /ex10.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex10.py 2 | -------------------------------------------------------------------------------- /ex11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex11.py -------------------------------------------------------------------------------- /ex11.sh: -------------------------------------------------------------------------------- 1 | ### @export "run" 2 | python3.6 ex11.py 3 | -------------------------------------------------------------------------------- /ex12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex12.py -------------------------------------------------------------------------------- /ex12.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex12.py 2 | -------------------------------------------------------------------------------- /ex13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex13.py -------------------------------------------------------------------------------- /ex13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex13.sh -------------------------------------------------------------------------------- /ex14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex14.py -------------------------------------------------------------------------------- /ex14.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex14.py zed 2 | -------------------------------------------------------------------------------- /ex15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex15.py -------------------------------------------------------------------------------- /ex15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex15.sh -------------------------------------------------------------------------------- /ex15_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex15_sample.txt -------------------------------------------------------------------------------- /ex16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex16.py -------------------------------------------------------------------------------- /ex16.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex16.py test.txt 2 | -------------------------------------------------------------------------------- /ex17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex17.py -------------------------------------------------------------------------------- /ex17.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex17.sh -------------------------------------------------------------------------------- /ex18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex18.py -------------------------------------------------------------------------------- /ex18.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex18.py 2 | -------------------------------------------------------------------------------- /ex19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex19.py -------------------------------------------------------------------------------- /ex19.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex19.py 2 | -------------------------------------------------------------------------------- /ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex2.py -------------------------------------------------------------------------------- /ex2.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex2.py 2 | -------------------------------------------------------------------------------- /ex20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex20.py -------------------------------------------------------------------------------- /ex20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex20.sh -------------------------------------------------------------------------------- /ex21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex21.py -------------------------------------------------------------------------------- /ex21.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex21.py 2 | -------------------------------------------------------------------------------- /ex22.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex22.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex22.py 2 | -------------------------------------------------------------------------------- /ex23.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex23.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex23.py 2 | -------------------------------------------------------------------------------- /ex24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex24.py -------------------------------------------------------------------------------- /ex24.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex24.py 2 | -------------------------------------------------------------------------------- /ex25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex25.py -------------------------------------------------------------------------------- /ex25_pycon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex25_pycon.py -------------------------------------------------------------------------------- /ex26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex26.py -------------------------------------------------------------------------------- /ex26.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex26.py 2 | -------------------------------------------------------------------------------- /ex28.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex28.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex28.py 2 | -------------------------------------------------------------------------------- /ex29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex29.py -------------------------------------------------------------------------------- /ex29.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex29.py 2 | -------------------------------------------------------------------------------- /ex3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex3.py -------------------------------------------------------------------------------- /ex3.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex3.py 2 | -------------------------------------------------------------------------------- /ex30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex30.py -------------------------------------------------------------------------------- /ex30.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex30.py 2 | -------------------------------------------------------------------------------- /ex31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex31.py -------------------------------------------------------------------------------- /ex31.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex31.py 2 | -------------------------------------------------------------------------------- /ex32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex32.py -------------------------------------------------------------------------------- /ex32.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex32.py 2 | -------------------------------------------------------------------------------- /ex33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex33.py -------------------------------------------------------------------------------- /ex33.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex33.py 2 | -------------------------------------------------------------------------------- /ex34.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex34.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex34.py 2 | -------------------------------------------------------------------------------- /ex35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex35.py -------------------------------------------------------------------------------- /ex35.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex35.py 2 | -------------------------------------------------------------------------------- /ex36.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex36.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex36.py 2 | -------------------------------------------------------------------------------- /ex37.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex37.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex37.py 2 | -------------------------------------------------------------------------------- /ex38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex38.py -------------------------------------------------------------------------------- /ex38.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex38.py 2 | -------------------------------------------------------------------------------- /ex39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex39.py -------------------------------------------------------------------------------- /ex39.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex39.py 2 | -------------------------------------------------------------------------------- /ex39_dict.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex39_test.py 2 | -------------------------------------------------------------------------------- /ex39_pycon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex39_pycon.py -------------------------------------------------------------------------------- /ex39_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex39_test.py -------------------------------------------------------------------------------- /ex4.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex4.err -------------------------------------------------------------------------------- /ex4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex4.py -------------------------------------------------------------------------------- /ex4.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex4.py 2 | -------------------------------------------------------------------------------- /ex40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex40.py -------------------------------------------------------------------------------- /ex40.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex40.py 2 | -------------------------------------------------------------------------------- /ex40a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex40a.py -------------------------------------------------------------------------------- /ex41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex41.py -------------------------------------------------------------------------------- /ex42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex42.py -------------------------------------------------------------------------------- /ex42.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex42.py 2 | -------------------------------------------------------------------------------- /ex42_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex42_demo.py -------------------------------------------------------------------------------- /ex42_demo.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex42_demo.py 2 | -------------------------------------------------------------------------------- /ex43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex43.py -------------------------------------------------------------------------------- /ex43.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex43.py 2 | -------------------------------------------------------------------------------- /ex43_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex43_classes.py -------------------------------------------------------------------------------- /ex44a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex44a.py -------------------------------------------------------------------------------- /ex44a.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex44a.py 2 | -------------------------------------------------------------------------------- /ex44b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex44b.py -------------------------------------------------------------------------------- /ex44b.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex44b.py 2 | -------------------------------------------------------------------------------- /ex44c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex44c.py -------------------------------------------------------------------------------- /ex44c.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex44c.py 2 | -------------------------------------------------------------------------------- /ex44d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex44d.py -------------------------------------------------------------------------------- /ex44d.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex44d.py 2 | -------------------------------------------------------------------------------- /ex44e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex44e.py -------------------------------------------------------------------------------- /ex44e.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex44e.py 2 | -------------------------------------------------------------------------------- /ex45.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex45.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex45.py 2 | -------------------------------------------------------------------------------- /ex47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex47.py -------------------------------------------------------------------------------- /ex47.sh-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex47.sh-session -------------------------------------------------------------------------------- /ex47/ex47/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex47/ex47/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex47/ex47/game.py -------------------------------------------------------------------------------- /ex47/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex47/setup.py -------------------------------------------------------------------------------- /ex47/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex47/tests/ex47_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex47/tests/ex47_tests.py -------------------------------------------------------------------------------- /ex47_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex47_tests.py -------------------------------------------------------------------------------- /ex47_tests.sh: -------------------------------------------------------------------------------- 1 | python3.6_fix_me ex47_tests.py 2 | -------------------------------------------------------------------------------- /ex48.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex48.sh -------------------------------------------------------------------------------- /ex48/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex48/lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex48/lexicon.py -------------------------------------------------------------------------------- /ex48/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex48/parser.py -------------------------------------------------------------------------------- /ex48_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex48_convert.py -------------------------------------------------------------------------------- /ex48_pycon.py: -------------------------------------------------------------------------------- 1 | int("hell") 2 | -------------------------------------------------------------------------------- /ex49.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex49.py 2 | -------------------------------------------------------------------------------- /ex49_pycon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex49_pycon.py -------------------------------------------------------------------------------- /ex49a_pycon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex49a_pycon.py -------------------------------------------------------------------------------- /ex5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex5.py -------------------------------------------------------------------------------- /ex5.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex5.py 2 | -------------------------------------------------------------------------------- /ex50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex50.py -------------------------------------------------------------------------------- /ex50.sh: -------------------------------------------------------------------------------- 1 | python3.6_fix_me ex50.py 2 | -------------------------------------------------------------------------------- /ex50/gothonweb/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex50/gothonweb/app.py -------------------------------------------------------------------------------- /ex50/gothonweb/gothonweb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex50/gothonweb/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex50/gothonweb/templates/index.html -------------------------------------------------------------------------------- /ex50/gothonweb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex51.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex51.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex51.py 2 | -------------------------------------------------------------------------------- /ex51/gothonweb/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/app.py -------------------------------------------------------------------------------- /ex51/gothonweb/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex51/gothonweb/form_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/form_test.py -------------------------------------------------------------------------------- /ex51/gothonweb/gothonweb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex51/gothonweb/templates/hello_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/templates/hello_form.html -------------------------------------------------------------------------------- /ex51/gothonweb/templates/hello_form_laid_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/templates/hello_form_laid_out.html -------------------------------------------------------------------------------- /ex51/gothonweb/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/templates/index.html -------------------------------------------------------------------------------- /ex51/gothonweb/templates/index_laid_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/templates/index_laid_out.html -------------------------------------------------------------------------------- /ex51/gothonweb/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/templates/layout.html -------------------------------------------------------------------------------- /ex51/gothonweb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex51/gothonweb/tests/app_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/tests/app_tests.py -------------------------------------------------------------------------------- /ex51/gothonweb/tests/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex51/gothonweb/tests/tools.py -------------------------------------------------------------------------------- /ex52.py: -------------------------------------------------------------------------------- 1 | # empty exercise 2 | -------------------------------------------------------------------------------- /ex52.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex52.py 2 | -------------------------------------------------------------------------------- /ex52/gothonweb/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex52/gothonweb/app.py -------------------------------------------------------------------------------- /ex52/gothonweb/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex52/gothonweb/gothonweb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex52/gothonweb/gothonweb/planisphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex52/gothonweb/gothonweb/planisphere.py -------------------------------------------------------------------------------- /ex52/gothonweb/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex52/gothonweb/templates/layout.html -------------------------------------------------------------------------------- /ex52/gothonweb/templates/show_room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex52/gothonweb/templates/show_room.html -------------------------------------------------------------------------------- /ex52/gothonweb/templates/you_died.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex52/gothonweb/templates/you_died.html -------------------------------------------------------------------------------- /ex52/gothonweb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex52/gothonweb/tests/app_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex52/gothonweb/tests/app_tests.py -------------------------------------------------------------------------------- /ex52/gothonweb/tests/planisphere_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex52/gothonweb/tests/planisphere_tests.py -------------------------------------------------------------------------------- /ex6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex6.py -------------------------------------------------------------------------------- /ex6.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex6.py 2 | -------------------------------------------------------------------------------- /ex7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex7.py -------------------------------------------------------------------------------- /ex7.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex7.py 2 | -------------------------------------------------------------------------------- /ex8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex8.py -------------------------------------------------------------------------------- /ex8.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex8.py 2 | -------------------------------------------------------------------------------- /ex9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/ex9.py -------------------------------------------------------------------------------- /ex9.sh: -------------------------------------------------------------------------------- 1 | python3.6 ex9.py 2 | -------------------------------------------------------------------------------- /fake_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/fake_input.py -------------------------------------------------------------------------------- /hashmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/hashmap.py -------------------------------------------------------------------------------- /lexicon_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/lexicon_tests.py -------------------------------------------------------------------------------- /new_file.txt: -------------------------------------------------------------------------------- 1 | This is a test file. 2 | -------------------------------------------------------------------------------- /skeleton/NAME/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/skeleton/setup.py -------------------------------------------------------------------------------- /skeleton/tests/NAME_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/skeleton/tests/NAME_tests.py -------------------------------------------------------------------------------- /skeleton/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedshaw/learn-python3-thw-code/HEAD/totest.txt --------------------------------------------------------------------------------