├── .github └── workflows │ └── pipeline.yml ├── .idea ├── .gitignore ├── Learning-Python.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Al Sweigart ├── .idea │ ├── .gitignore │ ├── Al Sweigart.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── 01 Python Basics │ ├── Notes.MD │ └── python problems │ │ ├── test1.py │ │ ├── test2.py │ │ └── test3.py └── 02 Flow Control │ └── index.py ├── My Notes ├── Classes&Objects.MD ├── Index.MD └── Intro.MD ├── README.md ├── practie problems ├── solve_1.py ├── solve_10.py ├── solve_2.py ├── solve_3.py ├── solve_4.py ├── solve_5.py ├── solve_6.py ├── solve_7.py ├── solve_8.py └── solve_9.py └── python programs ├── Herztext.py ├── Noten.py ├── Nummer(n).py ├── Rechner.py ├── Sanduhr.py ├── earth.py ├── passwort.py └── raten.py /.github/workflows/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/.github/workflows/pipeline.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Learning-Python.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/.idea/Learning-Python.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Al Sweigart/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Al Sweigart/.idea/Al Sweigart.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/.idea/Al Sweigart.iml -------------------------------------------------------------------------------- /Al Sweigart/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Al Sweigart/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/.idea/misc.xml -------------------------------------------------------------------------------- /Al Sweigart/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/.idea/modules.xml -------------------------------------------------------------------------------- /Al Sweigart/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/.idea/vcs.xml -------------------------------------------------------------------------------- /Al Sweigart/01 Python Basics/Notes.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/01 Python Basics/Notes.MD -------------------------------------------------------------------------------- /Al Sweigart/01 Python Basics/python problems/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/01 Python Basics/python problems/test1.py -------------------------------------------------------------------------------- /Al Sweigart/01 Python Basics/python problems/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/01 Python Basics/python problems/test2.py -------------------------------------------------------------------------------- /Al Sweigart/01 Python Basics/python problems/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/Al Sweigart/01 Python Basics/python problems/test3.py -------------------------------------------------------------------------------- /Al Sweigart/02 Flow Control/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /My Notes/Classes&Objects.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/My Notes/Classes&Objects.MD -------------------------------------------------------------------------------- /My Notes/Index.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/My Notes/Index.MD -------------------------------------------------------------------------------- /My Notes/Intro.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/My Notes/Intro.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/README.md -------------------------------------------------------------------------------- /practie problems/solve_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_1.py -------------------------------------------------------------------------------- /practie problems/solve_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_10.py -------------------------------------------------------------------------------- /practie problems/solve_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_2.py -------------------------------------------------------------------------------- /practie problems/solve_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_3.py -------------------------------------------------------------------------------- /practie problems/solve_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_4.py -------------------------------------------------------------------------------- /practie problems/solve_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_5.py -------------------------------------------------------------------------------- /practie problems/solve_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_6.py -------------------------------------------------------------------------------- /practie problems/solve_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_7.py -------------------------------------------------------------------------------- /practie problems/solve_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_8.py -------------------------------------------------------------------------------- /practie problems/solve_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/practie problems/solve_9.py -------------------------------------------------------------------------------- /python programs/Herztext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/python programs/Herztext.py -------------------------------------------------------------------------------- /python programs/Noten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/python programs/Noten.py -------------------------------------------------------------------------------- /python programs/Nummer(n).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/python programs/Nummer(n).py -------------------------------------------------------------------------------- /python programs/Rechner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/python programs/Rechner.py -------------------------------------------------------------------------------- /python programs/Sanduhr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/python programs/Sanduhr.py -------------------------------------------------------------------------------- /python programs/earth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/python programs/earth.py -------------------------------------------------------------------------------- /python programs/passwort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/python programs/passwort.py -------------------------------------------------------------------------------- /python programs/raten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheM1ddleM1n/Learning-PythonV2/HEAD/python programs/raten.py --------------------------------------------------------------------------------