├── day_1 └── helloworld.py ├── day_10 ├── __pycache__ │ ├── countries.cpython-39.pyc │ └── countries_data.cpython-39.pyc ├── countries.py ├── countries_data.py └── loops.py ├── day_11 ├── __pycache__ │ └── countries_data.cpython-39.pyc ├── countries_data.py └── fucntions.py ├── day_12 └── modules.py ├── day_13 └── list_comp.py ├── day_14 ├── __pycache__ │ ├── countries.cpython-310.pyc │ └── countries_data.cpython-310.pyc ├── countries.py ├── countries_data.py └── high_order_functs.py ├── day_16 ├── __pycache__ │ └── datetime.cpython-310.pyc └── date_time.py ├── day_17 └── exceptions.py ├── day_18 └── reg_ex.py ├── day_19 ├── countries_data.json ├── donald_speech.txt ├── email_exchange_big.txt ├── file_handling.py ├── hack_news.csv ├── melina_trump_speech.txt ├── michelle_obama_speech.txt ├── obama_speech.txt └── romeo_and_juliet.txt ├── day_2 └── variables.py ├── day_20 ├── mypackages │ ├── __init__.pyt │ ├── arithmetic.py │ └── greet.py └── pip_install.py ├── day_21 └── classes_and_objects.py ├── day_3 └── operators.py ├── day_4 └── strings.py ├── day_5 └── lists.py ├── day_6 ├── __pycache__ │ └── man_lists.cpython-39.pyc ├── man_lists.py └── tuple.py ├── day_7 └── sets.py ├── day_8 └── dict.py └── day_9 ├── __pycache__ └── man_lists.cpython-39.pyc ├── conditionals.py └── man_lists.py /day_1/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_1/helloworld.py -------------------------------------------------------------------------------- /day_10/__pycache__/countries.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_10/__pycache__/countries.cpython-39.pyc -------------------------------------------------------------------------------- /day_10/__pycache__/countries_data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_10/__pycache__/countries_data.cpython-39.pyc -------------------------------------------------------------------------------- /day_10/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_10/countries.py -------------------------------------------------------------------------------- /day_10/countries_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_10/countries_data.py -------------------------------------------------------------------------------- /day_10/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_10/loops.py -------------------------------------------------------------------------------- /day_11/__pycache__/countries_data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_11/__pycache__/countries_data.cpython-39.pyc -------------------------------------------------------------------------------- /day_11/countries_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_11/countries_data.py -------------------------------------------------------------------------------- /day_11/fucntions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_11/fucntions.py -------------------------------------------------------------------------------- /day_12/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_12/modules.py -------------------------------------------------------------------------------- /day_13/list_comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_13/list_comp.py -------------------------------------------------------------------------------- /day_14/__pycache__/countries.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_14/__pycache__/countries.cpython-310.pyc -------------------------------------------------------------------------------- /day_14/__pycache__/countries_data.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_14/__pycache__/countries_data.cpython-310.pyc -------------------------------------------------------------------------------- /day_14/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_14/countries.py -------------------------------------------------------------------------------- /day_14/countries_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_14/countries_data.py -------------------------------------------------------------------------------- /day_14/high_order_functs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_14/high_order_functs.py -------------------------------------------------------------------------------- /day_16/__pycache__/datetime.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_16/__pycache__/datetime.cpython-310.pyc -------------------------------------------------------------------------------- /day_16/date_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_16/date_time.py -------------------------------------------------------------------------------- /day_17/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_17/exceptions.py -------------------------------------------------------------------------------- /day_18/reg_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_18/reg_ex.py -------------------------------------------------------------------------------- /day_19/countries_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/countries_data.json -------------------------------------------------------------------------------- /day_19/donald_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/donald_speech.txt -------------------------------------------------------------------------------- /day_19/email_exchange_big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/email_exchange_big.txt -------------------------------------------------------------------------------- /day_19/file_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/file_handling.py -------------------------------------------------------------------------------- /day_19/hack_news.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/hack_news.csv -------------------------------------------------------------------------------- /day_19/melina_trump_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/melina_trump_speech.txt -------------------------------------------------------------------------------- /day_19/michelle_obama_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/michelle_obama_speech.txt -------------------------------------------------------------------------------- /day_19/obama_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/obama_speech.txt -------------------------------------------------------------------------------- /day_19/romeo_and_juliet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_19/romeo_and_juliet.txt -------------------------------------------------------------------------------- /day_2/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_2/variables.py -------------------------------------------------------------------------------- /day_20/mypackages/__init__.pyt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /day_20/mypackages/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_20/mypackages/arithmetic.py -------------------------------------------------------------------------------- /day_20/mypackages/greet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_20/mypackages/greet.py -------------------------------------------------------------------------------- /day_20/pip_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_20/pip_install.py -------------------------------------------------------------------------------- /day_21/classes_and_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_21/classes_and_objects.py -------------------------------------------------------------------------------- /day_3/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_3/operators.py -------------------------------------------------------------------------------- /day_4/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_4/strings.py -------------------------------------------------------------------------------- /day_5/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_5/lists.py -------------------------------------------------------------------------------- /day_6/__pycache__/man_lists.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_6/__pycache__/man_lists.cpython-39.pyc -------------------------------------------------------------------------------- /day_6/man_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_6/man_lists.py -------------------------------------------------------------------------------- /day_6/tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_6/tuple.py -------------------------------------------------------------------------------- /day_7/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_7/sets.py -------------------------------------------------------------------------------- /day_8/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_8/dict.py -------------------------------------------------------------------------------- /day_9/__pycache__/man_lists.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_9/__pycache__/man_lists.cpython-39.pyc -------------------------------------------------------------------------------- /day_9/conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_9/conditionals.py -------------------------------------------------------------------------------- /day_9/man_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamDubYah/30DaysOfPythonChallenge/HEAD/day_9/man_lists.py --------------------------------------------------------------------------------