├── .gitignore ├── 01_execute_python ├── README.md └── answer_ex01.py ├── 02_collections ├── README.md └── answer_ex02.py ├── 03_find_pattern ├── README.md └── answer_ex03.py ├── 04_class ├── README.md └── answer_ex04.py ├── 05_use_packages ├── README.md ├── answer_05.py └── requirements.txt ├── 06_exception_logging ├── README.md └── answer_06.py ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/.gitignore -------------------------------------------------------------------------------- /01_execute_python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/01_execute_python/README.md -------------------------------------------------------------------------------- /01_execute_python/answer_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/01_execute_python/answer_ex01.py -------------------------------------------------------------------------------- /02_collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/02_collections/README.md -------------------------------------------------------------------------------- /02_collections/answer_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/02_collections/answer_ex02.py -------------------------------------------------------------------------------- /03_find_pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/03_find_pattern/README.md -------------------------------------------------------------------------------- /03_find_pattern/answer_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/03_find_pattern/answer_ex03.py -------------------------------------------------------------------------------- /04_class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/04_class/README.md -------------------------------------------------------------------------------- /04_class/answer_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/04_class/answer_ex04.py -------------------------------------------------------------------------------- /05_use_packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/05_use_packages/README.md -------------------------------------------------------------------------------- /05_use_packages/answer_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/05_use_packages/answer_05.py -------------------------------------------------------------------------------- /05_use_packages/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.21.0 2 | -------------------------------------------------------------------------------- /06_exception_logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/06_exception_logging/README.md -------------------------------------------------------------------------------- /06_exception_logging/answer_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/06_exception_logging/answer_06.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoxfog417/python_exercises/HEAD/README.md --------------------------------------------------------------------------------