├── .gitignore ├── LICENSE ├── README.md ├── chapter02 ├── 2-1.py ├── 2-2.py ├── 2-3.py ├── 2-4.py ├── 2-5.py ├── 2-6.py ├── 2-7.py ├── 2-8.py └── 2-9.py ├── chapter03 ├── 3-1.py ├── 3-10.py ├── 3-11.py ├── 3-11error.py ├── 3-2.py ├── 3-3.py ├── 3-4.py ├── 3-5.py ├── 3-6.py ├── 3-7.py ├── 3-8.py ├── 3-8test.py └── 3-9.py ├── chapter04 ├── 4-1.py ├── 4-10.py ├── 4-11.py ├── 4-12.py ├── 4-13.py ├── 4-2.py ├── 4-3.py ├── 4-4.py ├── 4-5.py ├── 4-6.py ├── 4-7.py ├── 4-8.py ├── 4-9.py └── test.py ├── chapter05 ├── 5-1.py ├── 5-10.py ├── 5-11.py ├── 5-2.py ├── 5-3.py ├── 5-4.py ├── 5-5.py ├── 5-6.py ├── 5-7.py ├── 5-8.py └── 5-9.py ├── chapter06 ├── 6-1.py ├── 6-10.py ├── 6-11.py ├── 6-12.py ├── 6-2.py ├── 6-3.py ├── 6-4.py ├── 6-5.py ├── 6-6.py ├── 6-7.py ├── 6-8.py └── 6-9.py ├── chapter07 ├── 7-1.py ├── 7-10.py ├── 7-2.py ├── 7-3.py ├── 7-4.py ├── 7-5.py ├── 7-7.py ├── 7-8.py └── 7-9.py ├── chapter08 ├── 8-1.py ├── 8-10.py ├── 8-11.py ├── 8-12.py ├── 8-13.py ├── 8-14.py ├── 8-2.py ├── 8-3.py ├── 8-4.py ├── 8-5.py ├── 8-6.py ├── 8-7.py ├── 8-8.py ├── 8-9.py ├── print_models.py └── printing_functions.py ├── chapter09 ├── 9-1.py ├── 9-10.py ├── 9-11.py ├── 9-12.py ├── 9-13.py ├── 9-14.py ├── 9-2.py ├── 9-3.py ├── 9-4.py ├── 9-5.py ├── 9-6.py ├── 9-7.py ├── 9-8.py ├── 9-9.py ├── admin.py ├── restaurant.py └── user.py ├── chapter10 ├── 10-1.py ├── 10-11-read.py ├── 10-11-write.py ├── 10-12.py ├── 10-13.py ├── 10-2.py ├── 10-3.py ├── 10-4.py ├── 10-5.py ├── 10-6.py ├── 10-7.py ├── 10-8.py ├── 10-9.py ├── cats.txt ├── dogs.txt ├── favorite_number.json └── learning_python.txt ├── chapter11 ├── city_functions.py ├── employee.py ├── test_cities.py └── test_employee.py ├── chapter15 ├── 15-1.py ├── 15-2.py ├── 15-3.py ├── 15-4.py ├── 15-5.py ├── 15-6-dice_visual.py ├── 15-6-die_visual.py ├── 15-7.py ├── 15-8.py ├── 15-9.py ├── die.py └── random_walk.py ├── chapter16 ├── 16-1.py ├── 16-2.py ├── 16-3.py ├── 16-4.py ├── death_valley_2014.csv ├── population_data.json ├── sitka_weather_07-2014.csv └── sitka_weather_2014.csv └── chapter17 ├── 17-1.py ├── 17-2.py ├── 17-3.py └── python_repos.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/README.md -------------------------------------------------------------------------------- /chapter02/2-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter02/2-1.py -------------------------------------------------------------------------------- /chapter02/2-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter02/2-2.py -------------------------------------------------------------------------------- /chapter02/2-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter02/2-3.py -------------------------------------------------------------------------------- /chapter02/2-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter02/2-4.py -------------------------------------------------------------------------------- /chapter02/2-5.py: -------------------------------------------------------------------------------- 1 | print("Albert said ") -------------------------------------------------------------------------------- /chapter02/2-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter02/2-6.py -------------------------------------------------------------------------------- /chapter02/2-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter02/2-7.py -------------------------------------------------------------------------------- /chapter02/2-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter02/2-8.py -------------------------------------------------------------------------------- /chapter02/2-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter02/2-9.py -------------------------------------------------------------------------------- /chapter03/3-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-1.py -------------------------------------------------------------------------------- /chapter03/3-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-10.py -------------------------------------------------------------------------------- /chapter03/3-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-11.py -------------------------------------------------------------------------------- /chapter03/3-11error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-11error.py -------------------------------------------------------------------------------- /chapter03/3-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-2.py -------------------------------------------------------------------------------- /chapter03/3-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-3.py -------------------------------------------------------------------------------- /chapter03/3-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-4.py -------------------------------------------------------------------------------- /chapter03/3-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-5.py -------------------------------------------------------------------------------- /chapter03/3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-6.py -------------------------------------------------------------------------------- /chapter03/3-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-7.py -------------------------------------------------------------------------------- /chapter03/3-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-8.py -------------------------------------------------------------------------------- /chapter03/3-8test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-8test.py -------------------------------------------------------------------------------- /chapter03/3-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter03/3-9.py -------------------------------------------------------------------------------- /chapter04/4-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-1.py -------------------------------------------------------------------------------- /chapter04/4-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-10.py -------------------------------------------------------------------------------- /chapter04/4-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-11.py -------------------------------------------------------------------------------- /chapter04/4-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-12.py -------------------------------------------------------------------------------- /chapter04/4-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-13.py -------------------------------------------------------------------------------- /chapter04/4-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-2.py -------------------------------------------------------------------------------- /chapter04/4-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-3.py -------------------------------------------------------------------------------- /chapter04/4-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-4.py -------------------------------------------------------------------------------- /chapter04/4-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-5.py -------------------------------------------------------------------------------- /chapter04/4-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-6.py -------------------------------------------------------------------------------- /chapter04/4-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-7.py -------------------------------------------------------------------------------- /chapter04/4-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-8.py -------------------------------------------------------------------------------- /chapter04/4-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/4-9.py -------------------------------------------------------------------------------- /chapter04/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter04/test.py -------------------------------------------------------------------------------- /chapter05/5-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-1.py -------------------------------------------------------------------------------- /chapter05/5-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-10.py -------------------------------------------------------------------------------- /chapter05/5-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-11.py -------------------------------------------------------------------------------- /chapter05/5-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-2.py -------------------------------------------------------------------------------- /chapter05/5-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-3.py -------------------------------------------------------------------------------- /chapter05/5-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-4.py -------------------------------------------------------------------------------- /chapter05/5-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-5.py -------------------------------------------------------------------------------- /chapter05/5-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-6.py -------------------------------------------------------------------------------- /chapter05/5-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-7.py -------------------------------------------------------------------------------- /chapter05/5-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-8.py -------------------------------------------------------------------------------- /chapter05/5-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter05/5-9.py -------------------------------------------------------------------------------- /chapter06/6-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-1.py -------------------------------------------------------------------------------- /chapter06/6-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-10.py -------------------------------------------------------------------------------- /chapter06/6-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-11.py -------------------------------------------------------------------------------- /chapter06/6-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-12.py -------------------------------------------------------------------------------- /chapter06/6-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-2.py -------------------------------------------------------------------------------- /chapter06/6-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-3.py -------------------------------------------------------------------------------- /chapter06/6-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-4.py -------------------------------------------------------------------------------- /chapter06/6-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-5.py -------------------------------------------------------------------------------- /chapter06/6-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-6.py -------------------------------------------------------------------------------- /chapter06/6-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-7.py -------------------------------------------------------------------------------- /chapter06/6-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-8.py -------------------------------------------------------------------------------- /chapter06/6-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter06/6-9.py -------------------------------------------------------------------------------- /chapter07/7-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter07/7-1.py -------------------------------------------------------------------------------- /chapter07/7-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter07/7-10.py -------------------------------------------------------------------------------- /chapter07/7-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter07/7-2.py -------------------------------------------------------------------------------- /chapter07/7-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter07/7-3.py -------------------------------------------------------------------------------- /chapter07/7-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter07/7-4.py -------------------------------------------------------------------------------- /chapter07/7-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter07/7-5.py -------------------------------------------------------------------------------- /chapter07/7-7.py: -------------------------------------------------------------------------------- 1 | x = 2 2 | while x < 5: 3 | print(x) -------------------------------------------------------------------------------- /chapter07/7-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter07/7-8.py -------------------------------------------------------------------------------- /chapter07/7-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter07/7-9.py -------------------------------------------------------------------------------- /chapter08/8-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-1.py -------------------------------------------------------------------------------- /chapter08/8-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-10.py -------------------------------------------------------------------------------- /chapter08/8-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-11.py -------------------------------------------------------------------------------- /chapter08/8-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-12.py -------------------------------------------------------------------------------- /chapter08/8-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-13.py -------------------------------------------------------------------------------- /chapter08/8-14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-14.py -------------------------------------------------------------------------------- /chapter08/8-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-2.py -------------------------------------------------------------------------------- /chapter08/8-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-3.py -------------------------------------------------------------------------------- /chapter08/8-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-4.py -------------------------------------------------------------------------------- /chapter08/8-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-5.py -------------------------------------------------------------------------------- /chapter08/8-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-6.py -------------------------------------------------------------------------------- /chapter08/8-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-7.py -------------------------------------------------------------------------------- /chapter08/8-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-8.py -------------------------------------------------------------------------------- /chapter08/8-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/8-9.py -------------------------------------------------------------------------------- /chapter08/print_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/print_models.py -------------------------------------------------------------------------------- /chapter08/printing_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter08/printing_functions.py -------------------------------------------------------------------------------- /chapter09/9-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-1.py -------------------------------------------------------------------------------- /chapter09/9-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-10.py -------------------------------------------------------------------------------- /chapter09/9-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-11.py -------------------------------------------------------------------------------- /chapter09/9-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-12.py -------------------------------------------------------------------------------- /chapter09/9-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-13.py -------------------------------------------------------------------------------- /chapter09/9-14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-14.py -------------------------------------------------------------------------------- /chapter09/9-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-2.py -------------------------------------------------------------------------------- /chapter09/9-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-3.py -------------------------------------------------------------------------------- /chapter09/9-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-4.py -------------------------------------------------------------------------------- /chapter09/9-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-5.py -------------------------------------------------------------------------------- /chapter09/9-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-6.py -------------------------------------------------------------------------------- /chapter09/9-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-7.py -------------------------------------------------------------------------------- /chapter09/9-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-8.py -------------------------------------------------------------------------------- /chapter09/9-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/9-9.py -------------------------------------------------------------------------------- /chapter09/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/admin.py -------------------------------------------------------------------------------- /chapter09/restaurant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/restaurant.py -------------------------------------------------------------------------------- /chapter09/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter09/user.py -------------------------------------------------------------------------------- /chapter10/10-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-1.py -------------------------------------------------------------------------------- /chapter10/10-11-read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-11-read.py -------------------------------------------------------------------------------- /chapter10/10-11-write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-11-write.py -------------------------------------------------------------------------------- /chapter10/10-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-12.py -------------------------------------------------------------------------------- /chapter10/10-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-13.py -------------------------------------------------------------------------------- /chapter10/10-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-2.py -------------------------------------------------------------------------------- /chapter10/10-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-3.py -------------------------------------------------------------------------------- /chapter10/10-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-4.py -------------------------------------------------------------------------------- /chapter10/10-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-5.py -------------------------------------------------------------------------------- /chapter10/10-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-6.py -------------------------------------------------------------------------------- /chapter10/10-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-7.py -------------------------------------------------------------------------------- /chapter10/10-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-8.py -------------------------------------------------------------------------------- /chapter10/10-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/10-9.py -------------------------------------------------------------------------------- /chapter10/cats.txt: -------------------------------------------------------------------------------- 1 | henry 2 | dxvid 3 | sam -------------------------------------------------------------------------------- /chapter10/dogs.txt: -------------------------------------------------------------------------------- 1 | mm 2 | nn 3 | zz 4 | -------------------------------------------------------------------------------- /chapter10/favorite_number.json: -------------------------------------------------------------------------------- 1 | "znn" -------------------------------------------------------------------------------- /chapter10/learning_python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter10/learning_python.txt -------------------------------------------------------------------------------- /chapter11/city_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter11/city_functions.py -------------------------------------------------------------------------------- /chapter11/employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter11/employee.py -------------------------------------------------------------------------------- /chapter11/test_cities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter11/test_cities.py -------------------------------------------------------------------------------- /chapter11/test_employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter11/test_employee.py -------------------------------------------------------------------------------- /chapter15/15-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-1.py -------------------------------------------------------------------------------- /chapter15/15-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-2.py -------------------------------------------------------------------------------- /chapter15/15-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-3.py -------------------------------------------------------------------------------- /chapter15/15-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-4.py -------------------------------------------------------------------------------- /chapter15/15-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-5.py -------------------------------------------------------------------------------- /chapter15/15-6-dice_visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-6-dice_visual.py -------------------------------------------------------------------------------- /chapter15/15-6-die_visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-6-die_visual.py -------------------------------------------------------------------------------- /chapter15/15-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-7.py -------------------------------------------------------------------------------- /chapter15/15-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-8.py -------------------------------------------------------------------------------- /chapter15/15-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/15-9.py -------------------------------------------------------------------------------- /chapter15/die.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/die.py -------------------------------------------------------------------------------- /chapter15/random_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter15/random_walk.py -------------------------------------------------------------------------------- /chapter16/16-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter16/16-1.py -------------------------------------------------------------------------------- /chapter16/16-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter16/16-2.py -------------------------------------------------------------------------------- /chapter16/16-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter16/16-3.py -------------------------------------------------------------------------------- /chapter16/16-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter16/16-4.py -------------------------------------------------------------------------------- /chapter16/death_valley_2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter16/death_valley_2014.csv -------------------------------------------------------------------------------- /chapter16/population_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter16/population_data.json -------------------------------------------------------------------------------- /chapter16/sitka_weather_07-2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter16/sitka_weather_07-2014.csv -------------------------------------------------------------------------------- /chapter16/sitka_weather_2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter16/sitka_weather_2014.csv -------------------------------------------------------------------------------- /chapter17/17-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter17/17-1.py -------------------------------------------------------------------------------- /chapter17/17-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter17/17-2.py -------------------------------------------------------------------------------- /chapter17/17-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter17/17-3.py -------------------------------------------------------------------------------- /chapter17/python_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctopusLian/Python-Crash-Course-Homework/HEAD/chapter17/python_repos.py --------------------------------------------------------------------------------