├── .gitignore ├── README.md └── update.sh /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # files 3 | .DS_Store 4 | test.py 5 | rewrite.py 6 | 7 | 8 | # folder 9 | __pycache__ 10 | test 11 | old 12 | 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Python-Tutorial 2 | 3 | # Contents 4 | ## 0 Anaconda 5 | 6 | ## 1 Basics 7 | 8 | ## 2 Variable and Data Types 9 | 10 | ## 3 Operator 11 | 12 | ## 4 Flow Control 13 | 14 | ## 5 Function 15 | 16 | ## 6 File IO 17 | 18 | ## 7 Data Type Advanced 19 | 20 | ## 8 OOP 21 | 22 | ## 9 Advanced 23 | 24 | ## 10 Libraries 25 | 26 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | git add . 2 | git commit -m "update" 3 | git push 4 | --------------------------------------------------------------------------------