├── Chapter1.General Introduction └── formulas.py ├── Chapter10. Files ├── afile.py ├── file.py ├── formulas.py ├── grade.csv ├── olympians.py ├── olympics.txt └── reduced_olympics.csv ├── Chapter11. Dictionaries ├── dict.py ├── formulas.py ├── max_value.py └── min_value.py ├── Chapter12. Functions ├── Common_letter.py ├── def_name.py ├── def_sumofsquares.py ├── def_turtle.py ├── difficult.py └── formulas.py ├── Chapter13. Tuple Packing and Unpacking ├── formulas.py ├── rough.py └── tuple.py ├── Chapter14. More About Iteration ├── even.py ├── formulas.py ├── sum_of_list.py ├── whileloop.py └── whileloop_ass.py ├── Chapter15. Advanced Functions ├── ass.py ├── formulas.py └── lambda.py ├── Chapter16. Sorting ├── ass.py ├── course2project.py ├── formulas.py ├── hig-low_nums.py ├── project │ ├── course2project1.py │ ├── negative_words.txt │ ├── positive_words.txt │ └── project_twitter_data.csv ├── sort.py └── sorted_key.py ├── Chapter17. Nested Data and Nested Iteration ├── copy_inner.py ├── course_3_assessment_1.py └── formulas.py ├── Chapter18. Test Cases ├── count.py ├── distance.py ├── formulas.py ├── intro.py ├── reverse.py └── testcase.py ├── Chapter19. Exceptions ├── formulas.py └── try.py ├── Chapter2. Variables, Statements, and Expressions ├── 2.10. Statements and Expressions.py ├── 2.13. Updating Variables.py ├── 2.2.Values and Data types.py ├── 2.3.Operaors and Operands.py ├── 2.4.Functions calls.py ├── 2.6. Type conversion functions.py ├── 2.7. Variables.py ├── hardcoding.py ├── input.py └── rougy.py ├── Chapter20. Defining your own Classes └── formulas.py ├── Chapter21. Building Programs └── formulas.py ├── Chapter22. Inheritance ├── 1 │ ├── 3.py │ ├── Pet.py │ └── Pet1.py ├── 2 │ ├── 1.py │ └── 2.py ├── 3 │ ├── 1.py │ ├── 2.py │ └── 3.py ├── 4 │ └── Tamagotchi.py └── formulas.py ├── Chapter23. More on Accumulation: Map, Filter, List Comprehension, and Zip ├── course_3_assessment_2.py ├── formulas.py └── zip.py ├── Chapter24. Internet APIs ├── Apple_com.py ├── Fetching_a_page.py ├── RestAPI_intro.py ├── flicker.py ├── formulas.py ├── read&write_file.py └── requests_with_caching.py ├── Chapter3. Debugging └── formulas.py ├── Chapter4. Python Modules ├── formulas.py ├── randommodule.py └── randon.py ├── Chapter5. Python Turtle ├── 2stars.py ├── crossarrow.py ├── forloop.py ├── loop&turtle.py ├── proj.py ├── sq_tr_hex_oct.py ├── star.py ├── turtle-shape.py ├── turtle.py ├── turtle.pyc └── turtle_forwar_back.py ├── Chapter6. Sequences ├── 1.py ├── count.py ├── formulas.py ├── index.py ├── listslices.py ├── split.py ├── str&list&tuples.py ├── str&lists.py └── str.py ├── Chapter7. Iteration ├── RGB.py ├── accumulator.py ├── assg.py ├── forloop_byindex.py ├── formulas.py ├── loop.py └── reverse_str.py ├── Chapter8. Conditionals ├── ass.py ├── danger.py ├── formulas.py ├── in_notin.py ├── kirakassignment.py ├── rough.py └── turtleexample.py ├── Chapter9. Transforming Sequences ├── __pycache__ │ └── imp.cpython-37.pyc ├── formulas.py ├── imp.py ├── is.py ├── mutability.py └── rough.py ├── README.md ├── course_1_assessment_10.py ├── course_1_assessment_11.py ├── course_1_assessment_12.py ├── course_1_assessment_2.py ├── course_1_assessment_5.py ├── course_1_assessment_6.py ├── course_1_assessment_7.py ├── course_1_assessment_9.py ├── course_2_assessment_1.py ├── course_2_assessment_2.py ├── course_2_assessment_3.PY ├── course_2_assessment_4.PY ├── course_2_assessment_5.PY ├── course_2_assessment_6.py ├── course_2_assessment_7.py ├── course_2_assessment_8.py ├── course_2_project.py ├── course_3_assessment_1.py ├── course_3_assessment_2.py ├── course_3_project.py ├── course_4_assessment_1.py ├── course_4_assessment_2.py ├── course_4_project.py ├── formulas.py ├── list.py └── rough.py /Chapter1.General Introduction/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter1.General Introduction/formulas.py -------------------------------------------------------------------------------- /Chapter10. Files/afile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter10. Files/afile.py -------------------------------------------------------------------------------- /Chapter10. Files/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter10. Files/file.py -------------------------------------------------------------------------------- /Chapter10. Files/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter10. Files/formulas.py -------------------------------------------------------------------------------- /Chapter10. Files/grade.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter10. Files/grade.csv -------------------------------------------------------------------------------- /Chapter10. Files/olympians.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter10. Files/olympians.py -------------------------------------------------------------------------------- /Chapter10. Files/olympics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter10. Files/olympics.txt -------------------------------------------------------------------------------- /Chapter10. Files/reduced_olympics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter10. Files/reduced_olympics.csv -------------------------------------------------------------------------------- /Chapter11. Dictionaries/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter11. Dictionaries/dict.py -------------------------------------------------------------------------------- /Chapter11. Dictionaries/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter11. Dictionaries/formulas.py -------------------------------------------------------------------------------- /Chapter11. Dictionaries/max_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter11. Dictionaries/max_value.py -------------------------------------------------------------------------------- /Chapter11. Dictionaries/min_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter11. Dictionaries/min_value.py -------------------------------------------------------------------------------- /Chapter12. Functions/Common_letter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter12. Functions/Common_letter.py -------------------------------------------------------------------------------- /Chapter12. Functions/def_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter12. Functions/def_name.py -------------------------------------------------------------------------------- /Chapter12. Functions/def_sumofsquares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter12. Functions/def_sumofsquares.py -------------------------------------------------------------------------------- /Chapter12. Functions/def_turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter12. Functions/def_turtle.py -------------------------------------------------------------------------------- /Chapter12. Functions/difficult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter12. Functions/difficult.py -------------------------------------------------------------------------------- /Chapter12. Functions/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter12. Functions/formulas.py -------------------------------------------------------------------------------- /Chapter13. Tuple Packing and Unpacking/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter13. Tuple Packing and Unpacking/formulas.py -------------------------------------------------------------------------------- /Chapter13. Tuple Packing and Unpacking/rough.py: -------------------------------------------------------------------------------- 1 | print("Hello, World!") -------------------------------------------------------------------------------- /Chapter13. Tuple Packing and Unpacking/tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter13. Tuple Packing and Unpacking/tuple.py -------------------------------------------------------------------------------- /Chapter14. More About Iteration/even.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter14. More About Iteration/even.py -------------------------------------------------------------------------------- /Chapter14. More About Iteration/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter14. More About Iteration/formulas.py -------------------------------------------------------------------------------- /Chapter14. More About Iteration/sum_of_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter14. More About Iteration/sum_of_list.py -------------------------------------------------------------------------------- /Chapter14. More About Iteration/whileloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter14. More About Iteration/whileloop.py -------------------------------------------------------------------------------- /Chapter14. More About Iteration/whileloop_ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter14. More About Iteration/whileloop_ass.py -------------------------------------------------------------------------------- /Chapter15. Advanced Functions/ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter15. Advanced Functions/ass.py -------------------------------------------------------------------------------- /Chapter15. Advanced Functions/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter15. Advanced Functions/formulas.py -------------------------------------------------------------------------------- /Chapter15. Advanced Functions/lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter15. Advanced Functions/lambda.py -------------------------------------------------------------------------------- /Chapter16. Sorting/ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/ass.py -------------------------------------------------------------------------------- /Chapter16. Sorting/course2project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/course2project.py -------------------------------------------------------------------------------- /Chapter16. Sorting/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/formulas.py -------------------------------------------------------------------------------- /Chapter16. Sorting/hig-low_nums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/hig-low_nums.py -------------------------------------------------------------------------------- /Chapter16. Sorting/project/course2project1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/project/course2project1.py -------------------------------------------------------------------------------- /Chapter16. Sorting/project/negative_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/project/negative_words.txt -------------------------------------------------------------------------------- /Chapter16. Sorting/project/positive_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/project/positive_words.txt -------------------------------------------------------------------------------- /Chapter16. Sorting/project/project_twitter_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/project/project_twitter_data.csv -------------------------------------------------------------------------------- /Chapter16. Sorting/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/sort.py -------------------------------------------------------------------------------- /Chapter16. Sorting/sorted_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter16. Sorting/sorted_key.py -------------------------------------------------------------------------------- /Chapter17. Nested Data and Nested Iteration/copy_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter17. Nested Data and Nested Iteration/copy_inner.py -------------------------------------------------------------------------------- /Chapter17. Nested Data and Nested Iteration/course_3_assessment_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter17. Nested Data and Nested Iteration/course_3_assessment_1.py -------------------------------------------------------------------------------- /Chapter17. Nested Data and Nested Iteration/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter17. Nested Data and Nested Iteration/formulas.py -------------------------------------------------------------------------------- /Chapter18. Test Cases/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter18. Test Cases/count.py -------------------------------------------------------------------------------- /Chapter18. Test Cases/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter18. Test Cases/distance.py -------------------------------------------------------------------------------- /Chapter18. Test Cases/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter18. Test Cases/formulas.py -------------------------------------------------------------------------------- /Chapter18. Test Cases/intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter18. Test Cases/intro.py -------------------------------------------------------------------------------- /Chapter18. Test Cases/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter18. Test Cases/reverse.py -------------------------------------------------------------------------------- /Chapter18. Test Cases/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter18. Test Cases/testcase.py -------------------------------------------------------------------------------- /Chapter19. Exceptions/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter19. Exceptions/formulas.py -------------------------------------------------------------------------------- /Chapter19. Exceptions/try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter19. Exceptions/try.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/2.10. Statements and Expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/2.10. Statements and Expressions.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/2.13. Updating Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/2.13. Updating Variables.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/2.2.Values and Data types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/2.2.Values and Data types.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/2.3.Operaors and Operands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/2.3.Operaors and Operands.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/2.4.Functions calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/2.4.Functions calls.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/2.6. Type conversion functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/2.6. Type conversion functions.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/2.7. Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/2.7. Variables.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/hardcoding.py: -------------------------------------------------------------------------------- 1 | x=10 2 | y=20 3 | avg=(x+y)/2 4 | print(avg) -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/input.py -------------------------------------------------------------------------------- /Chapter2. Variables, Statements, and Expressions/rougy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter2. Variables, Statements, and Expressions/rougy.py -------------------------------------------------------------------------------- /Chapter20. Defining your own Classes/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter20. Defining your own Classes/formulas.py -------------------------------------------------------------------------------- /Chapter21. Building Programs/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter21. Building Programs/formulas.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/1/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/1/3.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/1/Pet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/1/Pet.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/1/Pet1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/1/Pet1.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/2/1.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/2/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/2/2.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/3/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/3/1.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/3/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/3/2.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/3/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/3/3.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/4/Tamagotchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/4/Tamagotchi.py -------------------------------------------------------------------------------- /Chapter22. Inheritance/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter22. Inheritance/formulas.py -------------------------------------------------------------------------------- /Chapter23. More on Accumulation: Map, Filter, List Comprehension, and Zip/course_3_assessment_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter23. More on Accumulation: Map, Filter, List Comprehension, and Zip/course_3_assessment_2.py -------------------------------------------------------------------------------- /Chapter23. More on Accumulation: Map, Filter, List Comprehension, and Zip/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter23. More on Accumulation: Map, Filter, List Comprehension, and Zip/formulas.py -------------------------------------------------------------------------------- /Chapter23. More on Accumulation: Map, Filter, List Comprehension, and Zip/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter23. More on Accumulation: Map, Filter, List Comprehension, and Zip/zip.py -------------------------------------------------------------------------------- /Chapter24. Internet APIs/Apple_com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter24. Internet APIs/Apple_com.py -------------------------------------------------------------------------------- /Chapter24. Internet APIs/Fetching_a_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter24. Internet APIs/Fetching_a_page.py -------------------------------------------------------------------------------- /Chapter24. Internet APIs/RestAPI_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter24. Internet APIs/RestAPI_intro.py -------------------------------------------------------------------------------- /Chapter24. Internet APIs/flicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter24. Internet APIs/flicker.py -------------------------------------------------------------------------------- /Chapter24. Internet APIs/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter24. Internet APIs/formulas.py -------------------------------------------------------------------------------- /Chapter24. Internet APIs/read&write_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter24. Internet APIs/read&write_file.py -------------------------------------------------------------------------------- /Chapter24. Internet APIs/requests_with_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter24. Internet APIs/requests_with_caching.py -------------------------------------------------------------------------------- /Chapter3. Debugging/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter3. Debugging/formulas.py -------------------------------------------------------------------------------- /Chapter4. Python Modules/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter4. Python Modules/formulas.py -------------------------------------------------------------------------------- /Chapter4. Python Modules/randommodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter4. Python Modules/randommodule.py -------------------------------------------------------------------------------- /Chapter4. Python Modules/randon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter4. Python Modules/randon.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/2stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/2stars.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/crossarrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/crossarrow.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/forloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/forloop.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/loop&turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/loop&turtle.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/proj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/proj.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/sq_tr_hex_oct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/sq_tr_hex_oct.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/star.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/turtle-shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/turtle-shape.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/turtle.py -------------------------------------------------------------------------------- /Chapter5. Python Turtle/turtle.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/turtle.pyc -------------------------------------------------------------------------------- /Chapter5. Python Turtle/turtle_forwar_back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter5. Python Turtle/turtle_forwar_back.py -------------------------------------------------------------------------------- /Chapter6. Sequences/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/1.py -------------------------------------------------------------------------------- /Chapter6. Sequences/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/count.py -------------------------------------------------------------------------------- /Chapter6. Sequences/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/formulas.py -------------------------------------------------------------------------------- /Chapter6. Sequences/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/index.py -------------------------------------------------------------------------------- /Chapter6. Sequences/listslices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/listslices.py -------------------------------------------------------------------------------- /Chapter6. Sequences/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/split.py -------------------------------------------------------------------------------- /Chapter6. Sequences/str&list&tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/str&list&tuples.py -------------------------------------------------------------------------------- /Chapter6. Sequences/str&lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/str&lists.py -------------------------------------------------------------------------------- /Chapter6. Sequences/str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter6. Sequences/str.py -------------------------------------------------------------------------------- /Chapter7. Iteration/RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter7. Iteration/RGB.py -------------------------------------------------------------------------------- /Chapter7. Iteration/accumulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter7. Iteration/accumulator.py -------------------------------------------------------------------------------- /Chapter7. Iteration/assg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter7. Iteration/assg.py -------------------------------------------------------------------------------- /Chapter7. Iteration/forloop_byindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter7. Iteration/forloop_byindex.py -------------------------------------------------------------------------------- /Chapter7. Iteration/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter7. Iteration/formulas.py -------------------------------------------------------------------------------- /Chapter7. Iteration/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter7. Iteration/loop.py -------------------------------------------------------------------------------- /Chapter7. Iteration/reverse_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter7. Iteration/reverse_str.py -------------------------------------------------------------------------------- /Chapter8. Conditionals/ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter8. Conditionals/ass.py -------------------------------------------------------------------------------- /Chapter8. Conditionals/danger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter8. Conditionals/danger.py -------------------------------------------------------------------------------- /Chapter8. Conditionals/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter8. Conditionals/formulas.py -------------------------------------------------------------------------------- /Chapter8. Conditionals/in_notin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter8. Conditionals/in_notin.py -------------------------------------------------------------------------------- /Chapter8. Conditionals/kirakassignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter8. Conditionals/kirakassignment.py -------------------------------------------------------------------------------- /Chapter8. Conditionals/rough.py: -------------------------------------------------------------------------------- 1 | y = 18 2 | for z in y: 3 | print(z) -------------------------------------------------------------------------------- /Chapter8. Conditionals/turtleexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter8. Conditionals/turtleexample.py -------------------------------------------------------------------------------- /Chapter9. Transforming Sequences/__pycache__/imp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter9. Transforming Sequences/__pycache__/imp.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter9. Transforming Sequences/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter9. Transforming Sequences/formulas.py -------------------------------------------------------------------------------- /Chapter9. Transforming Sequences/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter9. Transforming Sequences/imp.py -------------------------------------------------------------------------------- /Chapter9. Transforming Sequences/is.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter9. Transforming Sequences/is.py -------------------------------------------------------------------------------- /Chapter9. Transforming Sequences/mutability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter9. Transforming Sequences/mutability.py -------------------------------------------------------------------------------- /Chapter9. Transforming Sequences/rough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/Chapter9. Transforming Sequences/rough.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/README.md -------------------------------------------------------------------------------- /course_1_assessment_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_1_assessment_10.py -------------------------------------------------------------------------------- /course_1_assessment_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_1_assessment_11.py -------------------------------------------------------------------------------- /course_1_assessment_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_1_assessment_12.py -------------------------------------------------------------------------------- /course_1_assessment_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_1_assessment_2.py -------------------------------------------------------------------------------- /course_1_assessment_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_1_assessment_5.py -------------------------------------------------------------------------------- /course_1_assessment_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_1_assessment_6.py -------------------------------------------------------------------------------- /course_1_assessment_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_1_assessment_7.py -------------------------------------------------------------------------------- /course_1_assessment_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_1_assessment_9.py -------------------------------------------------------------------------------- /course_2_assessment_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_assessment_1.py -------------------------------------------------------------------------------- /course_2_assessment_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_assessment_2.py -------------------------------------------------------------------------------- /course_2_assessment_3.PY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_assessment_3.PY -------------------------------------------------------------------------------- /course_2_assessment_4.PY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_assessment_4.PY -------------------------------------------------------------------------------- /course_2_assessment_5.PY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_assessment_5.PY -------------------------------------------------------------------------------- /course_2_assessment_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_assessment_6.py -------------------------------------------------------------------------------- /course_2_assessment_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_assessment_7.py -------------------------------------------------------------------------------- /course_2_assessment_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_assessment_8.py -------------------------------------------------------------------------------- /course_2_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_2_project.py -------------------------------------------------------------------------------- /course_3_assessment_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_3_assessment_1.py -------------------------------------------------------------------------------- /course_3_assessment_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_3_assessment_2.py -------------------------------------------------------------------------------- /course_3_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_3_project.py -------------------------------------------------------------------------------- /course_4_assessment_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_4_assessment_1.py -------------------------------------------------------------------------------- /course_4_assessment_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_4_assessment_2.py -------------------------------------------------------------------------------- /course_4_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/course_4_project.py -------------------------------------------------------------------------------- /formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/formulas.py -------------------------------------------------------------------------------- /list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/list.py -------------------------------------------------------------------------------- /rough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mujju-palaan/Python3Programming--Coursera/HEAD/rough.py --------------------------------------------------------------------------------