├── .editorconfig ├── .gitattributes ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── launch.json └── tasks.json ├── Chapter1_Intro └── test.py ├── Chapter2_Basics ├── Calculations.py ├── Calculations2.py ├── Dictionaries.py ├── Exercise1.py ├── Exercise2.py ├── Exercise3.py ├── ForLoop.py ├── Functions.py ├── FunctionsArguments.py ├── Lists.py ├── Logic.py ├── Logic2.py ├── Logic3.py ├── Solution1.py ├── Solution2.py ├── Solution3.py ├── Strings.py ├── Variables.py └── WhileLoop.py ├── Chapter3_Libraries ├── Main.py ├── MainFunction.py ├── MatplotlibIntro.py ├── MyModule.py └── NumpyIntro.py ├── Chapter4_Intermediate ├── Classes.py ├── Exceptions.py ├── Exercise4.py ├── Exercise5.py ├── Files.py ├── Inheritance.py ├── Keywords.py ├── ListComp.py ├── ListSlicing.py ├── MultiDImListComp.py ├── MultiDimLists.py ├── Set.py ├── Solution4.py ├── Solution5.py ├── Tuple.py ├── TypeAnnotations.py ├── ZipEnumerate.py ├── example.ipynb ├── fStrings.py ├── test.txt └── test_out.txt ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements-dev.txt └── requirements.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter1_Intro/test.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") 2 | -------------------------------------------------------------------------------- /Chapter2_Basics/Calculations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Calculations.py -------------------------------------------------------------------------------- /Chapter2_Basics/Calculations2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Calculations2.py -------------------------------------------------------------------------------- /Chapter2_Basics/Dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Dictionaries.py -------------------------------------------------------------------------------- /Chapter2_Basics/Exercise1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Exercise1.py -------------------------------------------------------------------------------- /Chapter2_Basics/Exercise2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Exercise2.py -------------------------------------------------------------------------------- /Chapter2_Basics/Exercise3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Exercise3.py -------------------------------------------------------------------------------- /Chapter2_Basics/ForLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/ForLoop.py -------------------------------------------------------------------------------- /Chapter2_Basics/Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Functions.py -------------------------------------------------------------------------------- /Chapter2_Basics/FunctionsArguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/FunctionsArguments.py -------------------------------------------------------------------------------- /Chapter2_Basics/Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Lists.py -------------------------------------------------------------------------------- /Chapter2_Basics/Logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Logic.py -------------------------------------------------------------------------------- /Chapter2_Basics/Logic2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Logic2.py -------------------------------------------------------------------------------- /Chapter2_Basics/Logic3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Logic3.py -------------------------------------------------------------------------------- /Chapter2_Basics/Solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Solution1.py -------------------------------------------------------------------------------- /Chapter2_Basics/Solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Solution2.py -------------------------------------------------------------------------------- /Chapter2_Basics/Solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Solution3.py -------------------------------------------------------------------------------- /Chapter2_Basics/Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Strings.py -------------------------------------------------------------------------------- /Chapter2_Basics/Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/Variables.py -------------------------------------------------------------------------------- /Chapter2_Basics/WhileLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter2_Basics/WhileLoop.py -------------------------------------------------------------------------------- /Chapter3_Libraries/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter3_Libraries/Main.py -------------------------------------------------------------------------------- /Chapter3_Libraries/MainFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter3_Libraries/MainFunction.py -------------------------------------------------------------------------------- /Chapter3_Libraries/MatplotlibIntro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter3_Libraries/MatplotlibIntro.py -------------------------------------------------------------------------------- /Chapter3_Libraries/MyModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter3_Libraries/MyModule.py -------------------------------------------------------------------------------- /Chapter3_Libraries/NumpyIntro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter3_Libraries/NumpyIntro.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Classes.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Exceptions.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Exercise4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Exercise4.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Exercise5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Exercise5.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Files.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Inheritance.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Keywords.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/ListComp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/ListComp.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/ListSlicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/ListSlicing.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/MultiDImListComp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/MultiDImListComp.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/MultiDimLists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/MultiDimLists.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Set.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Solution4.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Solution5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Solution5.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/Tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/Tuple.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/TypeAnnotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/TypeAnnotations.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/ZipEnumerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/ZipEnumerate.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/example.ipynb -------------------------------------------------------------------------------- /Chapter4_Intermediate/fStrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/fStrings.py -------------------------------------------------------------------------------- /Chapter4_Intermediate/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/test.txt -------------------------------------------------------------------------------- /Chapter4_Intermediate/test_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/Chapter4_Intermediate/test_out.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franneck94/UdemyPythonIntro/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements-dev.txt 2 | 3 | # Libraries 4 | numpy 5 | matplotlib 6 | --------------------------------------------------------------------------------