├── .gitignore ├── 46 Simple Python Exercises.pdf ├── README.md ├── problem_01.py ├── problem_02.py ├── problem_03.py ├── problem_04.py ├── problem_05.py ├── problem_06.py ├── problem_07.py ├── problem_07_alternative.py ├── problem_07_alternative_short.py ├── problem_08.py ├── problem_08_alternative.py ├── problem_09.py ├── problem_09_alternative.py ├── problem_10.py ├── problem_10_alternative.py ├── problem_11.py ├── problem_11_alternative.py ├── problem_12.py ├── problem_12_alternative.py ├── problem_13.py ├── problem_13_alternative.py ├── problem_14.py ├── problem_14_alternative.py ├── problem_15.py ├── problem_15_alternative.py ├── problem_16.py ├── problem_16_alternative.py ├── problem_17.py ├── problem_17_alternative.py ├── problem_18.py ├── problem_18_alternative.py ├── problem_19.py ├── problem_20.py ├── problem_20_alternative.py ├── problem_21.py ├── problem_21_alternative.py ├── problem_21_alternative_2.py ├── problem_22.py ├── problem_22_alternative.py ├── problem_23.py ├── problem_24.py ├── problem_25.py ├── problem_26.py ├── problem_27.py ├── problem_27_alternative.py ├── problem_28.py ├── problem_28_alternative.py ├── problem_29.py ├── problem_30.py ├── problem_30_alternative.py ├── problem_31.py ├── problem_31_alternative.py ├── problem_32.py ├── problem_32_alternative.py ├── problem_33.py ├── problem_34.py ├── problem_35.py ├── problem_36.py ├── problem_37.py ├── test.txt ├── test_numbered.txt └── words.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/.gitignore -------------------------------------------------------------------------------- /46 Simple Python Exercises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/46 Simple Python Exercises.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/README.md -------------------------------------------------------------------------------- /problem_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_01.py -------------------------------------------------------------------------------- /problem_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_02.py -------------------------------------------------------------------------------- /problem_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_03.py -------------------------------------------------------------------------------- /problem_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_04.py -------------------------------------------------------------------------------- /problem_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_05.py -------------------------------------------------------------------------------- /problem_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_06.py -------------------------------------------------------------------------------- /problem_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_07.py -------------------------------------------------------------------------------- /problem_07_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_07_alternative.py -------------------------------------------------------------------------------- /problem_07_alternative_short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_07_alternative_short.py -------------------------------------------------------------------------------- /problem_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_08.py -------------------------------------------------------------------------------- /problem_08_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_08_alternative.py -------------------------------------------------------------------------------- /problem_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_09.py -------------------------------------------------------------------------------- /problem_09_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_09_alternative.py -------------------------------------------------------------------------------- /problem_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_10.py -------------------------------------------------------------------------------- /problem_10_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_10_alternative.py -------------------------------------------------------------------------------- /problem_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_11.py -------------------------------------------------------------------------------- /problem_11_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_11_alternative.py -------------------------------------------------------------------------------- /problem_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_12.py -------------------------------------------------------------------------------- /problem_12_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_12_alternative.py -------------------------------------------------------------------------------- /problem_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_13.py -------------------------------------------------------------------------------- /problem_13_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_13_alternative.py -------------------------------------------------------------------------------- /problem_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_14.py -------------------------------------------------------------------------------- /problem_14_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_14_alternative.py -------------------------------------------------------------------------------- /problem_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_15.py -------------------------------------------------------------------------------- /problem_15_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_15_alternative.py -------------------------------------------------------------------------------- /problem_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_16.py -------------------------------------------------------------------------------- /problem_16_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_16_alternative.py -------------------------------------------------------------------------------- /problem_17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_17.py -------------------------------------------------------------------------------- /problem_17_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_17_alternative.py -------------------------------------------------------------------------------- /problem_18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_18.py -------------------------------------------------------------------------------- /problem_18_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_18_alternative.py -------------------------------------------------------------------------------- /problem_19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_19.py -------------------------------------------------------------------------------- /problem_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_20.py -------------------------------------------------------------------------------- /problem_20_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_20_alternative.py -------------------------------------------------------------------------------- /problem_21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_21.py -------------------------------------------------------------------------------- /problem_21_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_21_alternative.py -------------------------------------------------------------------------------- /problem_21_alternative_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_21_alternative_2.py -------------------------------------------------------------------------------- /problem_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_22.py -------------------------------------------------------------------------------- /problem_22_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_22_alternative.py -------------------------------------------------------------------------------- /problem_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_23.py -------------------------------------------------------------------------------- /problem_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_24.py -------------------------------------------------------------------------------- /problem_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_25.py -------------------------------------------------------------------------------- /problem_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_26.py -------------------------------------------------------------------------------- /problem_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_27.py -------------------------------------------------------------------------------- /problem_27_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_27_alternative.py -------------------------------------------------------------------------------- /problem_28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_28.py -------------------------------------------------------------------------------- /problem_28_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_28_alternative.py -------------------------------------------------------------------------------- /problem_29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_29.py -------------------------------------------------------------------------------- /problem_30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_30.py -------------------------------------------------------------------------------- /problem_30_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_30_alternative.py -------------------------------------------------------------------------------- /problem_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_31.py -------------------------------------------------------------------------------- /problem_31_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_31_alternative.py -------------------------------------------------------------------------------- /problem_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_32.py -------------------------------------------------------------------------------- /problem_32_alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_32_alternative.py -------------------------------------------------------------------------------- /problem_33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_33.py -------------------------------------------------------------------------------- /problem_34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_34.py -------------------------------------------------------------------------------- /problem_35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_35.py -------------------------------------------------------------------------------- /problem_36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_36.py -------------------------------------------------------------------------------- /problem_37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/problem_37.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/test.txt -------------------------------------------------------------------------------- /test_numbered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/test_numbered.txt -------------------------------------------------------------------------------- /words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsho/46-Simple-Python-Exercises-Solutions/HEAD/words.txt --------------------------------------------------------------------------------