gitextract_nzd5gzb_/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── 01_Day_Introduction/ │ └── helloworld.py ├── 02_Day_Variables_builtin_functions/ │ ├── 02_variables_builtin_functions.md │ └── variables.py ├── 03_Day_Operators/ │ ├── 03_operators.md │ └── day-3.py ├── 04_Day_Strings/ │ ├── 04_strings.md │ └── day_4.py ├── 05_Day_Lists/ │ ├── 05_lists.md │ └── day_5.py ├── 06_Day_Tuples/ │ └── 06_tuples.md ├── 07_Day_Sets/ │ └── 07_sets.md ├── 08_Day_Dictionaries/ │ └── 08_dictionaries.md ├── 09_Day_Conditionals/ │ └── 09_conditionals.md ├── 10_Day_Loops/ │ └── 10_loops.md ├── 11_Day_Functions/ │ └── 11_functions.md ├── 12_Day_Modules/ │ ├── 12_modules.md │ ├── main.py │ └── mymodule.py ├── 13_Day_List_comprehension/ │ └── 13_list_comprehension.md ├── 14_Day_Higher_order_functions/ │ └── 14_higher_order_functions.md ├── 15_Day_Python_type_errors/ │ └── 15_python_type_errors.md ├── 16_Day_Python_date_time/ │ └── 16_python_datetime.md ├── 17_Day_Exception_handling/ │ └── 17_exception_handling.md ├── 18_Day_Regular_expressions/ │ └── 18_regular_expressions.md ├── 19_Day_File_handling/ │ └── 19_file_handling.md ├── 20_Day_Python_package_manager/ │ ├── 20_python_package_manager.md │ ├── __init__.py │ ├── arithmetic.py │ └── greet.py ├── 21_Day_Classes_and_objects/ │ └── 21_classes_and_objects.md ├── 22_Day_Web_scraping/ │ ├── 22_web_scraping.md │ └── scrapped_data.json ├── 23_Day_Virtual_environment/ │ └── 23_virtual_environment.md ├── 24_Day_Statistics/ │ └── 24_statistics.md ├── 25_Day_Pandas/ │ └── 25_pandas.md ├── 26_Day_Python_web/ │ └── 26_python_web.md ├── 27_Day_Python_with_mongodb/ │ └── 27_python_with_mongodb.md ├── 28_Day_API/ │ └── 28_API.md ├── 29_Day_Building_API/ │ └── 29_building_API.md ├── 30_Day_Conclusions/ │ └── 30_conclusions.md ├── Chinese/ │ ├── 02_variables_builtin_functions.md │ ├── 03_operators.md │ ├── 04_strings.md │ ├── 05_lists.md │ ├── 06_tuples.md │ ├── 07_sets.md │ ├── 08_dictionaries.md │ ├── 09_conditionals.md │ ├── 10_loops.md │ ├── 11_functions.md │ ├── 12_modules.md │ ├── 13_list_comprehension.md │ ├── 14_higher_order_functions.md │ ├── 15_python_type_errors.md │ ├── 15_python_type_errors_cn.md │ ├── 16_python_datetime.md │ ├── 16_python_datetime_cn.md │ ├── 17_exception_handling_cn.md │ ├── 18_regular_expressions_cn.md │ ├── 19_file_handling_cn.md │ ├── 20_python_package_manager_cn.md │ ├── 21_classes_and_objects_cn.md │ ├── 22_web_scraping_cn.md │ ├── 23_virtual_environment_cn.md │ ├── 24_statistics_cn.md │ ├── 25_pandas_cn.md │ ├── 26_python_web_cn.md │ ├── 27_python_with_mongodb_cn.md │ ├── 28_API_cn.md │ ├── 29_building_API_cn.md │ ├── 30_conclusions_cn.md │ └── README.md ├── Korean/ │ ├── 02_Day_Variables_builtin_functions/ │ │ └── 02_variables_builtin_functions.md │ ├── 04_strings_ko.md │ ├── 05_Day_Lists/ │ │ └── 05_lists.md │ ├── 07_sets_ko.md │ ├── 08_Day_Dictionaries/ │ │ └── 08_dictionaries.md │ ├── 10_loops_ko.md │ └── readme_ko.md ├── Portuguese/ │ ├── 02_Dia_Variaveis_BuiltIn_Functions/ │ │ └── README.md │ └── README.md ├── Spanish/ │ ├── 01_Day_Introduction/ │ │ └── helloworld.py │ ├── 02_Day_Variables_builtin_functions/ │ │ ├── 02_variables_builtin_functions.md │ │ └── variables.py │ ├── 02_variables_builtin_functions_sp.md │ ├── 03_Day_Operators/ │ │ ├── 03_operators.md │ │ └── day-3.py │ ├── 03_operators_sp.md │ ├── 04_strings_sp.md │ ├── 05_lists_sp.md │ ├── 06_tuples_sp.md │ ├── 07_sets_sp.md │ ├── 08_dictionaries_sp.md │ ├── 09_conditionals_sp.md │ ├── 10_loops_sp.md │ ├── 11_functions_sp.md │ ├── 12_modules_sp.md │ ├── 13_list_comprehension_sp.md │ ├── 14_higher_order_functions_sp.md │ ├── 15_python_type_errors_sp.md │ ├── 16_python_datetime_sp.md │ ├── 17_exception_handling_sp.md │ ├── 18_regular_expressions_sp.md │ ├── 19_file_handling_sp.md │ ├── 20_python_package_manager_sp.md │ ├── 21_classes_and_objects_sp.md │ ├── 22_web_scraping_sp.md │ ├── 23_virtual_environment_sp.md │ ├── 24_statistics_sp.md │ ├── 25_pandas_sp.md │ ├── 26_python_web_sp.md │ ├── 27_python_with_mongodb_sp.md │ ├── 28_API_sp.md │ ├── 29_building_API_sp.md │ ├── 30_conclusions_sp.md │ ├── README_sp.md │ └── readme.md ├── Ukrainian/ │ └── readme.md ├── data/ │ ├── F500.csv │ ├── HN_posts_year_to_Sep_26_2016.csv │ ├── cats.json │ ├── countries-data.py │ ├── countries.py │ ├── countries_data.json │ ├── countries_data_long.json │ ├── donald_speech.txt │ ├── email_exchanges.txt │ ├── email_exchanges_big.txt │ ├── fortune1000_final.csv │ ├── fortune_500_companies_2017.csv │ ├── hacker_news.csv │ ├── melina_trump_speech.txt │ ├── michelle_obama_speech.txt │ ├── obama_speech.txt │ ├── result.csv │ ├── romeo_and_juliet.txt │ ├── stop_words.py │ └── weight-height.csv ├── files/ │ ├── csv_example.csv │ ├── example.txt │ ├── excel_example.xlsx │ ├── json_example.json │ ├── reading_file_example.txt │ └── xml_example.xml ├── korean/ │ ├── 03_Day_Operators/ │ │ └── 03_operators.md │ └── readme.md ├── mymodule.py ├── mypackage/ │ ├── __init__.py │ ├── arithmetics.py │ └── greet.py ├── numpy.md ├── old_files/ │ ├── readme.md │ ├── readme10-12.md │ ├── readme13-15.md │ ├── readme16-18.md │ ├── readme19-21.md │ ├── readme22-24.md │ ├── readme25-27.md │ ├── readme28-30.md │ ├── readme4-6.md │ └── readme7-9.md ├── python_for_web/ │ ├── .gitignore │ ├── Procfile │ ├── app.py │ ├── requirements.txt │ ├── static/ │ │ └── css/ │ │ └── main.css │ └── templates/ │ ├── about.html │ ├── home.html │ ├── layout.html │ ├── post.html │ └── result.html └── readme.md