├── .gitattributes ├── Chapter 1 - PS ├── Problem1.py ├── Problem2.py ├── Problem3.py └── Problem4.py ├── Chapter 1 ├── first.py └── module.py ├── Chapter 10 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py └── 06_problem6.py ├── Chapter 10 ├── 01_class.py ├── 02_instance_vs_class_attr.py ├── 03_self.py └── 04_constructor.py ├── Chapter 11 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py ├── 06_problem6.py └── 07_problem7.py ├── Chapter 11 ├── 01_inheritance.py ├── 02_multiple_inheritance.py ├── 03_multilevel_inheritance.py ├── 04_super.py ├── 05_class_methods.py ├── 06_property_decorators.py └── 07_operator_overloading.py ├── Chapter 12 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05problem5.py └── tables.txt ├── Chapter 12 ├── 01_walrus.py ├── 02_types.py ├── 03_match_case.py ├── 04_exception.py ├── 05_raising_exceptions.py ├── 06_try_else.py ├── 07_try_finally.py ├── 08_main.py ├── 09_global.py ├── 10_enumerate.py ├── 11_list_comprehensions.py └── module.py ├── Chapter 13 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py ├── 06_problem6.py ├── 07_problem7.py ├── env1 │ └── .gitkeep ├── env2 │ └── .gitkeep ├── harryenv │ └── .gitkeep └── requirements.txt ├── Chapter 13 ├── 01_venv.py ├── 02_lambda.py ├── 03_join.py ├── 04_format.py ├── 05_map_filter_reduce.py └── requirements.txt ├── Chapter 2 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py └── 06_problem6.py ├── Chapter 2 ├── 01_variables.py ├── 02_datatypes.py ├── 03_rules_variables.py ├── 04_operators.py ├── 05_type.py └── 06_input.py ├── Chapter 3 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py └── 05_problem5.py ├── Chapter 3 ├── 01_intro_to_strings.py ├── 02_negative_slicing.py ├── 03_str_functions.py └── 04_escape_seq.py ├── Chapter 4 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py └── 05_problem5.py ├── Chapter 4 ├── 01_list.py ├── 02_list_methods.py ├── 03_tuple.py └── 04_tuple_methods.py ├── Chapter 5 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py ├── 06_problem6.py ├── 07_problem7.py ├── 08_problem8.py └── 09_problem9.py ├── Chapter 5 ├── 01_dict.py ├── 02_dict_methods.py ├── 03_sets.py ├── 04_set_methods.py └── 05_set_union_intersection.py ├── Chapter 6 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py ├── 06_problem6.py └── 07_problem7.py ├── Chapter 6 ├── 01_conditionals.py ├── 02_if_elif_else_ladder.py └── 03_multiple_if_statements.py ├── Chapter 7 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py ├── 06_problem6.py ├── 07_problem7.py ├── 08_problem8.py ├── 09_problem9.py └── 10_problem10.py ├── Chapter 7 ├── 01_loops.py ├── 02_while_loops.py ├── 03_list_using_while.py ├── 04_for_loops.py ├── 05_for_loop_iterate.py ├── 06_for_with_else.py ├── 07_break_and_continue.py └── 08_pass.py ├── Chapter 8 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py ├── 06_problem6.py ├── 07_problem7.py └── 08_problem8.py ├── Chapter 8 ├── 01_functions.py ├── 02_quick_quiz.py ├── 03_function_with_arguments.py ├── 04_default_argument.py └── 05_recursion.py ├── Chapter 9 - PS ├── 01_problem1.py ├── 02_problem2.py ├── 03_problem3.py ├── 04_problem4.py ├── 05_problem5.py ├── 06_problem.py ├── 07_problem7.py ├── 08_problem8.py ├── 09_problem9.py ├── 10_problem10.py ├── 11_problem.py ├── file.txt ├── hiscore.txt ├── log.txt ├── old.txt ├── poem.txt ├── renamed_by_python.txt ├── tables │ ├── table_10.txt │ ├── table_11.txt │ ├── table_12.txt │ ├── table_13.txt │ ├── table_14.txt │ ├── table_15.txt │ ├── table_16.txt │ ├── table_17.txt │ ├── table_18.txt │ ├── table_19.txt │ ├── table_2.txt │ ├── table_20.txt │ ├── table_3.txt │ ├── table_4.txt │ ├── table_5.txt │ ├── table_6.txt │ ├── table_7.txt │ ├── table_8.txt │ └── table_9.txt ├── this.txt └── this_copy.txt ├── Chapter 9 ├── 01_file.py ├── 02_file_write.py ├── 03_more_file_functions.py ├── 04_append.py ├── 05_with.py ├── file.txt └── myfile.txt ├── HandWritten_Python_Complete_Notes.pdf ├── Mega Project 1 - Jarvis ├── client.py ├── main.py ├── musicLibrary.py └── temp.mp3 ├── Mega Project 2 - AI AutoReply Bot ├── 01_get_cursor.py ├── 02_openai.py └── 03_bot.py ├── Project 1 ├── main-shortened.py └── main.py ├── Project 2 └── main.py ├── README.md └── The Ultimate Python Handbook.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/.gitattributes -------------------------------------------------------------------------------- /Chapter 1 - PS/Problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 1 - PS/Problem1.py -------------------------------------------------------------------------------- /Chapter 1 - PS/Problem2.py: -------------------------------------------------------------------------------- 1 | # Done using REPL -------------------------------------------------------------------------------- /Chapter 1 - PS/Problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 1 - PS/Problem3.py -------------------------------------------------------------------------------- /Chapter 1 - PS/Problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 1 - PS/Problem4.py -------------------------------------------------------------------------------- /Chapter 1/first.py: -------------------------------------------------------------------------------- 1 | print("Hello World") -------------------------------------------------------------------------------- /Chapter 1/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 1/module.py -------------------------------------------------------------------------------- /Chapter 10 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 10 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 10 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 10 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 10 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 10 - PS/06_problem6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10 - PS/06_problem6.py -------------------------------------------------------------------------------- /Chapter 10/01_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10/01_class.py -------------------------------------------------------------------------------- /Chapter 10/02_instance_vs_class_attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10/02_instance_vs_class_attr.py -------------------------------------------------------------------------------- /Chapter 10/03_self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10/03_self.py -------------------------------------------------------------------------------- /Chapter 10/04_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 10/04_constructor.py -------------------------------------------------------------------------------- /Chapter 11 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 11 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 11 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 11 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 11 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 11 - PS/06_problem6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11 - PS/06_problem6.py -------------------------------------------------------------------------------- /Chapter 11 - PS/07_problem7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11 - PS/07_problem7.py -------------------------------------------------------------------------------- /Chapter 11/01_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11/01_inheritance.py -------------------------------------------------------------------------------- /Chapter 11/02_multiple_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11/02_multiple_inheritance.py -------------------------------------------------------------------------------- /Chapter 11/03_multilevel_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11/03_multilevel_inheritance.py -------------------------------------------------------------------------------- /Chapter 11/04_super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11/04_super.py -------------------------------------------------------------------------------- /Chapter 11/05_class_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11/05_class_methods.py -------------------------------------------------------------------------------- /Chapter 11/06_property_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11/06_property_decorators.py -------------------------------------------------------------------------------- /Chapter 11/07_operator_overloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 11/07_operator_overloading.py -------------------------------------------------------------------------------- /Chapter 12 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 12 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 12 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 12 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 12 - PS/05problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12 - PS/05problem5.py -------------------------------------------------------------------------------- /Chapter 12 - PS/tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12 - PS/tables.txt -------------------------------------------------------------------------------- /Chapter 12/01_walrus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/01_walrus.py -------------------------------------------------------------------------------- /Chapter 12/02_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/02_types.py -------------------------------------------------------------------------------- /Chapter 12/03_match_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/03_match_case.py -------------------------------------------------------------------------------- /Chapter 12/04_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/04_exception.py -------------------------------------------------------------------------------- /Chapter 12/05_raising_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/05_raising_exceptions.py -------------------------------------------------------------------------------- /Chapter 12/06_try_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/06_try_else.py -------------------------------------------------------------------------------- /Chapter 12/07_try_finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/07_try_finally.py -------------------------------------------------------------------------------- /Chapter 12/08_main.py: -------------------------------------------------------------------------------- 1 | from module import myFunc 2 | 3 | -------------------------------------------------------------------------------- /Chapter 12/09_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/09_global.py -------------------------------------------------------------------------------- /Chapter 12/10_enumerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/10_enumerate.py -------------------------------------------------------------------------------- /Chapter 12/11_list_comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/11_list_comprehensions.py -------------------------------------------------------------------------------- /Chapter 12/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 12/module.py -------------------------------------------------------------------------------- /Chapter 13 - PS/01_problem1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 13 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 13 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 13 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 13 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 13 - PS/06_problem6.py: -------------------------------------------------------------------------------- 1 | # pip freeze > requirements.txt 2 | # virtualenv harryenv -------------------------------------------------------------------------------- /Chapter 13 - PS/07_problem7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13 - PS/07_problem7.py -------------------------------------------------------------------------------- /Chapter 13 - PS/env1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 13 - PS/env2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 13 - PS/harryenv/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 13 - PS/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13 - PS/requirements.txt -------------------------------------------------------------------------------- /Chapter 13/01_venv.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 13/02_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13/02_lambda.py -------------------------------------------------------------------------------- /Chapter 13/03_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13/03_join.py -------------------------------------------------------------------------------- /Chapter 13/04_format.py: -------------------------------------------------------------------------------- 1 | a = "{1} is a good {0}".format("harry", "boy") 2 | 3 | print(a) -------------------------------------------------------------------------------- /Chapter 13/05_map_filter_reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13/05_map_filter_reduce.py -------------------------------------------------------------------------------- /Chapter 13/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 13/requirements.txt -------------------------------------------------------------------------------- /Chapter 2 - PS/01_problem1.py: -------------------------------------------------------------------------------- 1 | a = 1 2 | 3 | b = 5 4 | 5 | print(a + b) -------------------------------------------------------------------------------- /Chapter 2 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 2 - PS/03_problem3.py: -------------------------------------------------------------------------------- 1 | a = input("Enter the value of a: ") 2 | print(type(a)) -------------------------------------------------------------------------------- /Chapter 2 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 2 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 2 - PS/06_problem6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2 - PS/06_problem6.py -------------------------------------------------------------------------------- /Chapter 2/01_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2/01_variables.py -------------------------------------------------------------------------------- /Chapter 2/02_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2/02_datatypes.py -------------------------------------------------------------------------------- /Chapter 2/03_rules_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2/03_rules_variables.py -------------------------------------------------------------------------------- /Chapter 2/04_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2/04_operators.py -------------------------------------------------------------------------------- /Chapter 2/05_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2/05_type.py -------------------------------------------------------------------------------- /Chapter 2/06_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 2/06_input.py -------------------------------------------------------------------------------- /Chapter 3 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 3 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 3 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 3 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 3 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 3/01_intro_to_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3/01_intro_to_strings.py -------------------------------------------------------------------------------- /Chapter 3/02_negative_slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3/02_negative_slicing.py -------------------------------------------------------------------------------- /Chapter 3/03_str_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3/03_str_functions.py -------------------------------------------------------------------------------- /Chapter 3/04_escape_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 3/04_escape_seq.py -------------------------------------------------------------------------------- /Chapter 4 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 4 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 4 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 4 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 4 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 4 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 4 - PS/04_problem4.py: -------------------------------------------------------------------------------- 1 | l = [3, 3, 5, 1] 2 | 3 | 4 | print(sum(l)) -------------------------------------------------------------------------------- /Chapter 4 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 4 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 4/01_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 4/01_list.py -------------------------------------------------------------------------------- /Chapter 4/02_list_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 4/02_list_methods.py -------------------------------------------------------------------------------- /Chapter 4/03_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 4/03_tuple.py -------------------------------------------------------------------------------- /Chapter 4/04_tuple_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 4/04_tuple_methods.py -------------------------------------------------------------------------------- /Chapter 5 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 5 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 5 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 5 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 5 - PS/05_problem5.py: -------------------------------------------------------------------------------- 1 | s = {} 2 | print(type(s)) -------------------------------------------------------------------------------- /Chapter 5 - PS/06_problem6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5 - PS/06_problem6.py -------------------------------------------------------------------------------- /Chapter 5 - PS/07_problem7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5 - PS/07_problem7.py -------------------------------------------------------------------------------- /Chapter 5 - PS/08_problem8.py: -------------------------------------------------------------------------------- 1 | # Nothing will happen. The values can be same 2 | -------------------------------------------------------------------------------- /Chapter 5 - PS/09_problem9.py: -------------------------------------------------------------------------------- 1 | s = {8, 7, 12, "Harry", [1,2]} 2 | 3 | s[4][0] = 9 -------------------------------------------------------------------------------- /Chapter 5/01_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5/01_dict.py -------------------------------------------------------------------------------- /Chapter 5/02_dict_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5/02_dict_methods.py -------------------------------------------------------------------------------- /Chapter 5/03_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5/03_sets.py -------------------------------------------------------------------------------- /Chapter 5/04_set_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5/04_set_methods.py -------------------------------------------------------------------------------- /Chapter 5/05_set_union_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 5/05_set_union_intersection.py -------------------------------------------------------------------------------- /Chapter 6 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 6 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 6 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 6 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 6 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 6 - PS/06_problem6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6 - PS/06_problem6.py -------------------------------------------------------------------------------- /Chapter 6 - PS/07_problem7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6 - PS/07_problem7.py -------------------------------------------------------------------------------- /Chapter 6/01_conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6/01_conditionals.py -------------------------------------------------------------------------------- /Chapter 6/02_if_elif_else_ladder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6/02_if_elif_else_ladder.py -------------------------------------------------------------------------------- /Chapter 6/03_multiple_if_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 6/03_multiple_if_statements.py -------------------------------------------------------------------------------- /Chapter 7 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 7 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 7 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 7 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 7 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 7 - PS/06_problem6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/06_problem6.py -------------------------------------------------------------------------------- /Chapter 7 - PS/07_problem7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/07_problem7.py -------------------------------------------------------------------------------- /Chapter 7 - PS/08_problem8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/08_problem8.py -------------------------------------------------------------------------------- /Chapter 7 - PS/09_problem9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/09_problem9.py -------------------------------------------------------------------------------- /Chapter 7 - PS/10_problem10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7 - PS/10_problem10.py -------------------------------------------------------------------------------- /Chapter 7/01_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7/01_loops.py -------------------------------------------------------------------------------- /Chapter 7/02_while_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7/02_while_loops.py -------------------------------------------------------------------------------- /Chapter 7/03_list_using_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7/03_list_using_while.py -------------------------------------------------------------------------------- /Chapter 7/04_for_loops.py: -------------------------------------------------------------------------------- 1 | for i in range(4): 2 | print(i) 3 | -------------------------------------------------------------------------------- /Chapter 7/05_for_loop_iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7/05_for_loop_iterate.py -------------------------------------------------------------------------------- /Chapter 7/06_for_with_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7/06_for_with_else.py -------------------------------------------------------------------------------- /Chapter 7/07_break_and_continue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7/07_break_and_continue.py -------------------------------------------------------------------------------- /Chapter 7/08_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 7/08_pass.py -------------------------------------------------------------------------------- /Chapter 8 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 8 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 8 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 8 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 8 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 8 - PS/06_problem6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8 - PS/06_problem6.py -------------------------------------------------------------------------------- /Chapter 8 - PS/07_problem7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8 - PS/07_problem7.py -------------------------------------------------------------------------------- /Chapter 8 - PS/08_problem8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8 - PS/08_problem8.py -------------------------------------------------------------------------------- /Chapter 8/01_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8/01_functions.py -------------------------------------------------------------------------------- /Chapter 8/02_quick_quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8/02_quick_quiz.py -------------------------------------------------------------------------------- /Chapter 8/03_function_with_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8/03_function_with_arguments.py -------------------------------------------------------------------------------- /Chapter 8/04_default_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8/04_default_argument.py -------------------------------------------------------------------------------- /Chapter 8/05_recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 8/05_recursion.py -------------------------------------------------------------------------------- /Chapter 9 - PS/01_problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/01_problem1.py -------------------------------------------------------------------------------- /Chapter 9 - PS/02_problem2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/02_problem2.py -------------------------------------------------------------------------------- /Chapter 9 - PS/03_problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/03_problem3.py -------------------------------------------------------------------------------- /Chapter 9 - PS/04_problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/04_problem4.py -------------------------------------------------------------------------------- /Chapter 9 - PS/05_problem5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/05_problem5.py -------------------------------------------------------------------------------- /Chapter 9 - PS/06_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/06_problem.py -------------------------------------------------------------------------------- /Chapter 9 - PS/07_problem7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/07_problem7.py -------------------------------------------------------------------------------- /Chapter 9 - PS/08_problem8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/08_problem8.py -------------------------------------------------------------------------------- /Chapter 9 - PS/09_problem9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/09_problem9.py -------------------------------------------------------------------------------- /Chapter 9 - PS/10_problem10.py: -------------------------------------------------------------------------------- 1 | with open("this_copy.txt", "w") as f: 2 | f.write("") -------------------------------------------------------------------------------- /Chapter 9 - PS/11_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/11_problem.py -------------------------------------------------------------------------------- /Chapter 9 - PS/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/file.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/hiscore.txt: -------------------------------------------------------------------------------- 1 | 45 -------------------------------------------------------------------------------- /Chapter 9 - PS/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/log.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/old.txt: -------------------------------------------------------------------------------- 1 | I am old -------------------------------------------------------------------------------- /Chapter 9 - PS/poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/poem.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/renamed_by_python.txt: -------------------------------------------------------------------------------- 1 | I am old -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_10.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_11.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_12.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_13.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_14.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_15.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_16.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_17.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_18.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_19.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_2.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_20.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_3.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_4.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_5.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_6.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_7.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_8.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/tables/table_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/tables/table_9.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/this.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9 - PS/this.txt -------------------------------------------------------------------------------- /Chapter 9 - PS/this_copy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9/01_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9/01_file.py -------------------------------------------------------------------------------- /Chapter 9/02_file_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9/02_file_write.py -------------------------------------------------------------------------------- /Chapter 9/03_more_file_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9/03_more_file_functions.py -------------------------------------------------------------------------------- /Chapter 9/04_append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9/04_append.py -------------------------------------------------------------------------------- /Chapter 9/05_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9/05_with.py -------------------------------------------------------------------------------- /Chapter 9/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9/file.txt -------------------------------------------------------------------------------- /Chapter 9/myfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Chapter 9/myfile.txt -------------------------------------------------------------------------------- /HandWritten_Python_Complete_Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/HandWritten_Python_Complete_Notes.pdf -------------------------------------------------------------------------------- /Mega Project 1 - Jarvis/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Mega Project 1 - Jarvis/client.py -------------------------------------------------------------------------------- /Mega Project 1 - Jarvis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Mega Project 1 - Jarvis/main.py -------------------------------------------------------------------------------- /Mega Project 1 - Jarvis/musicLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Mega Project 1 - Jarvis/musicLibrary.py -------------------------------------------------------------------------------- /Mega Project 1 - Jarvis/temp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Mega Project 1 - Jarvis/temp.mp3 -------------------------------------------------------------------------------- /Mega Project 2 - AI AutoReply Bot/01_get_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Mega Project 2 - AI AutoReply Bot/01_get_cursor.py -------------------------------------------------------------------------------- /Mega Project 2 - AI AutoReply Bot/02_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Mega Project 2 - AI AutoReply Bot/02_openai.py -------------------------------------------------------------------------------- /Mega Project 2 - AI AutoReply Bot/03_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Mega Project 2 - AI AutoReply Bot/03_bot.py -------------------------------------------------------------------------------- /Project 1/main-shortened.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Project 1/main-shortened.py -------------------------------------------------------------------------------- /Project 1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Project 1/main.py -------------------------------------------------------------------------------- /Project 2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/Project 2/main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/README.md -------------------------------------------------------------------------------- /The Ultimate Python Handbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/The-Ultimate-Python-Course/HEAD/The Ultimate Python Handbook.pdf --------------------------------------------------------------------------------