├── 00-00-python-pycharm-installation.md ├── 00-01-course-guide.md ├── 00-02-all-code.md ├── 00-03-course-overview.png ├── 00-python-shell ├── Section1.py ├── Section10 - Tips.py ├── Section2.py ├── Section3.py ├── Section4 String and Text - End.py ├── Section5 - Loops - Start to End.py ├── Section6 - OOPS Basics - Start to End.py ├── Section7 - Data Structures - Done.py ├── Section8 - OOPS Advanced - Done.py └── Section9 - Exception Handling - Done.py ├── 01-first-python-project ├── elif_examples.py ├── for_exercises.py ├── hello_world.py ├── if_puzzles.py ├── input.py ├── loop_puzzles.py ├── multiplication_table.py ├── number_menu.py ├── number_menu_loop.py ├── simple_interest.py ├── temp.txt └── while_exercises.py ├── 02-oops ├── Student.py ├── book.py ├── country.py ├── motor_bike.py ├── planet.py └── word_count.py ├── 04-exception-handling ├── currency.py ├── exception_handling_basics.py └── exception_handling_puzzles.py ├── 05-tips ├── all_about_methods.py ├── module_1.py └── module_2.py ├── 06-oops-advanced ├── amphibian.py ├── animal.py ├── book_reviews.py ├── fan.py ├── person_inheritance.py ├── recipe.py └── test.py ├── LICENSE └── README.md /00-00-python-pycharm-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-00-python-pycharm-installation.md -------------------------------------------------------------------------------- /00-01-course-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-01-course-guide.md -------------------------------------------------------------------------------- /00-02-all-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-02-all-code.md -------------------------------------------------------------------------------- /00-03-course-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-03-course-overview.png -------------------------------------------------------------------------------- /00-python-shell/Section1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section1.py -------------------------------------------------------------------------------- /00-python-shell/Section10 - Tips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section10 - Tips.py -------------------------------------------------------------------------------- /00-python-shell/Section2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section2.py -------------------------------------------------------------------------------- /00-python-shell/Section3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section3.py -------------------------------------------------------------------------------- /00-python-shell/Section4 String and Text - End.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section4 String and Text - End.py -------------------------------------------------------------------------------- /00-python-shell/Section5 - Loops - Start to End.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section5 - Loops - Start to End.py -------------------------------------------------------------------------------- /00-python-shell/Section6 - OOPS Basics - Start to End.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section6 - OOPS Basics - Start to End.py -------------------------------------------------------------------------------- /00-python-shell/Section7 - Data Structures - Done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section7 - Data Structures - Done.py -------------------------------------------------------------------------------- /00-python-shell/Section8 - OOPS Advanced - Done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section8 - OOPS Advanced - Done.py -------------------------------------------------------------------------------- /00-python-shell/Section9 - Exception Handling - Done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/00-python-shell/Section9 - Exception Handling - Done.py -------------------------------------------------------------------------------- /01-first-python-project/elif_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/elif_examples.py -------------------------------------------------------------------------------- /01-first-python-project/for_exercises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/for_exercises.py -------------------------------------------------------------------------------- /01-first-python-project/hello_world.py: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | 3 | # TODO : Make sure I learn about for in depth -------------------------------------------------------------------------------- /01-first-python-project/if_puzzles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/if_puzzles.py -------------------------------------------------------------------------------- /01-first-python-project/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/input.py -------------------------------------------------------------------------------- /01-first-python-project/loop_puzzles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/loop_puzzles.py -------------------------------------------------------------------------------- /01-first-python-project/multiplication_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/multiplication_table.py -------------------------------------------------------------------------------- /01-first-python-project/number_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/number_menu.py -------------------------------------------------------------------------------- /01-first-python-project/number_menu_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/number_menu_loop.py -------------------------------------------------------------------------------- /01-first-python-project/simple_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/simple_interest.py -------------------------------------------------------------------------------- /01-first-python-project/temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/temp.txt -------------------------------------------------------------------------------- /01-first-python-project/while_exercises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/01-first-python-project/while_exercises.py -------------------------------------------------------------------------------- /02-oops/Student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/02-oops/Student.py -------------------------------------------------------------------------------- /02-oops/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/02-oops/book.py -------------------------------------------------------------------------------- /02-oops/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/02-oops/country.py -------------------------------------------------------------------------------- /02-oops/motor_bike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/02-oops/motor_bike.py -------------------------------------------------------------------------------- /02-oops/planet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/02-oops/planet.py -------------------------------------------------------------------------------- /02-oops/word_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/02-oops/word_count.py -------------------------------------------------------------------------------- /04-exception-handling/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/04-exception-handling/currency.py -------------------------------------------------------------------------------- /04-exception-handling/exception_handling_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/04-exception-handling/exception_handling_basics.py -------------------------------------------------------------------------------- /04-exception-handling/exception_handling_puzzles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/04-exception-handling/exception_handling_puzzles.py -------------------------------------------------------------------------------- /05-tips/all_about_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/05-tips/all_about_methods.py -------------------------------------------------------------------------------- /05-tips/module_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/05-tips/module_1.py -------------------------------------------------------------------------------- /05-tips/module_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/05-tips/module_2.py -------------------------------------------------------------------------------- /06-oops-advanced/amphibian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/06-oops-advanced/amphibian.py -------------------------------------------------------------------------------- /06-oops-advanced/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/06-oops-advanced/animal.py -------------------------------------------------------------------------------- /06-oops-advanced/book_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/06-oops-advanced/book_reviews.py -------------------------------------------------------------------------------- /06-oops-advanced/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/06-oops-advanced/fan.py -------------------------------------------------------------------------------- /06-oops-advanced/person_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/06-oops-advanced/person_inheritance.py -------------------------------------------------------------------------------- /06-oops-advanced/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/06-oops-advanced/recipe.py -------------------------------------------------------------------------------- /06-oops-advanced/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in28minutes/learn-programming-with-python-/HEAD/README.md --------------------------------------------------------------------------------