├── .gitignore ├── ENG Version ├── Introduction to Python.pptx ├── Module 1 - Introduction to Python.ipynb ├── Module_2_Introduction_to_Python.ipynb └── Module_3_Introduction_to_Python.ipynb ├── README.md ├── TR Version ├── Module 0 - Introduction to Python.pdf ├── Module 1 - Introduction to Python.ipynb ├── Module_2_Introduction_to_Python.ipynb └── Module_3_Introduction_to_Python.ipynb └── images ├── certifi.png └── logo.png /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | -------------------------------------------------------------------------------- /ENG Version/Introduction to Python.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/ENG Version/Introduction to Python.pptx -------------------------------------------------------------------------------- /ENG Version/Module 1 - Introduction to Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/ENG Version/Module 1 - Introduction to Python.ipynb -------------------------------------------------------------------------------- /ENG Version/Module_2_Introduction_to_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/ENG Version/Module_2_Introduction_to_Python.ipynb -------------------------------------------------------------------------------- /ENG Version/Module_3_Introduction_to_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/ENG Version/Module_3_Introduction_to_Python.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/README.md -------------------------------------------------------------------------------- /TR Version/Module 0 - Introduction to Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/TR Version/Module 0 - Introduction to Python.pdf -------------------------------------------------------------------------------- /TR Version/Module 1 - Introduction to Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/TR Version/Module 1 - Introduction to Python.ipynb -------------------------------------------------------------------------------- /TR Version/Module_2_Introduction_to_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/TR Version/Module_2_Introduction_to_Python.ipynb -------------------------------------------------------------------------------- /TR Version/Module_3_Introduction_to_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/TR Version/Module_3_Introduction_to_Python.ipynb -------------------------------------------------------------------------------- /images/certifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/images/certifi.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaih/introduction-to-python/HEAD/images/logo.png --------------------------------------------------------------------------------