kristofer revidoval tento gist . Přejít na revizi
1 file changed, 1 insertion, 1 deletion
python-redux.md
| @@ -45,7 +45,7 @@ ZCW also has a series of articles and slides which roughly mirror the outline of | |||
| 45 | 45 | ||
| 46 | 46 | ## And some Real references | |
| 47 | 47 | ||
| 48 | - | - Easy to Learn | |
| 48 | + | - Easy to Learn | |
| 49 | 49 | - [Think Python Ebook](https://greenteapress.com/wp/think-python-2e/) | |
| 50 | 50 | - Thoroughly documented | |
| 51 | 51 | - [Python Docs](https://www.python.org/doc/) | |
kristofer revidoval tento gist . Přejít na revizi
1 file changed, 15 insertions
python-redux.md
| @@ -43,3 +43,18 @@ ZCW also has a series of articles and slides which roughly mirror the outline of | |||
| 43 | 43 | - [Part 11, Inheritance](https://zipcodecore.github.io/curriculum-assets/lectures/python/inheritance/content.html) | |
| 44 | 44 | - [Part 12, Conditional Expressions, Comprehensions, and Generators](https://zipcodecore.github.io/curriculum-assets/lectures/python/conditional-expressions/content.html) | |
| 45 | 45 | ||
| 46 | + | ## And some Real references | |
| 47 | + | ||
| 48 | + | - Easy to Learn | |
| 49 | + | - [Think Python Ebook](https://greenteapress.com/wp/think-python-2e/) | |
| 50 | + | - Thoroughly documented | |
| 51 | + | - [Python Docs](https://www.python.org/doc/) | |
| 52 | + | - Open source | |
| 53 | + | - [Wiki Entry](https://en.wikipedia.org/wiki/Open_source) | |
| 54 | + | - Broad range of applications | |
| 55 | + | - [Applications](https://www.python.org/about/apps/) | |
| 56 | + | - Fully featured standard library | |
| 57 | + | - [Python Standard Library Docs](https://docs.python.org/3/) | |
| 58 | + | - Thousands of third-party modules | |
| 59 | + | - [Python Package Index (PyPI)](https://pypi.org/) | |
| 60 | + | ||
kristofer revidoval tento gist . Přejít na revizi
1 file changed, 45 insertions
python-redux.md(vytvořil soubor)
| @@ -0,0 +1,45 @@ | |||
| 1 | + | # Python - your new BFF | |
| 2 | + | ||
| 3 | + | Python needs to be your _new, best, friend._ | |
| 4 | + | ||
| 5 | + | Python, an intuitive and versatile programming language, has earned its reputation as the go-to language for | |
| 6 | + | beginners and experts alike. Its simplicity and readability make it accessible to newcomers, while its extensive | |
| 7 | + | libraries and frameworks provide powerful tools for complex projects. | |
| 8 | + | ||
| 9 | + | Regularly revisiting the essentials and fundamentals of Python is crucial for both learning and mastery. | |
| 10 | + | It is crucial to having a strong foundation that ensures that you remain adept at problem-solving, efficient | |
| 11 | + | coding practices, and leveraging the latest updates and features. This periodic review helps keep skills sharp | |
| 12 | + | and knowledge current, paving the way for continual growth and innovation. | |
| 13 | + | ||
| 14 | + | ## Python for Data Engineers | |
| 15 | + | ||
| 16 | + | Wes McKinney's Book [Python for Data Analysis, 3E](https://wesmckinney.com/book/) has a good couple of chapters of _python review._ | |
| 17 | + | ||
| 18 | + | - [2 Python Language Basics, IPython, and Jupyter Notebooks](https://wesmckinney.com/book/python-basics) | |
| 19 | + | - [3 Built-In Data Structures, Functions, and Files](https://wesmckinney.com/book/python-builtin) | |
| 20 | + | ||
| 21 | + | and the code notebooks for these two chapters: | |
| 22 | + | ||
| 23 | + | - [2 ch02.ipynb](https://github.com/wesm/pydata-book/blob/3rd-edition/ch02.ipynb) | |
| 24 | + | - [3 ch03.ipynb](https://github.com/wesm/pydata-book/blob/3rd-edition/ch03.ipynb) | |
| 25 | + | ||
| 26 | + | ||
| 27 | + | Are very Handy. | |
| 28 | + | ||
| 29 | + | ## ZipCode's Python | |
| 30 | + | ||
| 31 | + | ZCW also has a series of articles and slides which roughly mirror the outline of Allen Downey's [ThinkPython, 2E](https://greenteapress.com/thinkpython2/html/index.html) | |
| 32 | + | ||
| 33 | + | - [Part 1, Types, Operators, Strings, Comments](https://zipcodecore.github.io/curriculum-assets/lectures/python/types-operators-strings-comments/content.html) | |
| 34 | + | - [Part 2, Input, Functions (and Lambdas)](https://zipcodecore.github.io/curriculum-assets/lectures/python/functions/content.html) | |
| 35 | + | - [Part 3, Expressions, Conditionals](https://zipcodecore.github.io/curriculum-assets/lectures/python/conditional-operators/content.html) | |
| 36 | + | - [Part 4, Range, Loops, and Control Flow & Recursion](https://zipcodecore.github.io/curriculum-assets/lectures/python/recursion-and-loops/content.html) | |
| 37 | + | - [Part 5, Strings & Lists](https://zipcodecore.github.io/curriculum-assets/lectures/python/strings/content.html) | |
| 38 | + | - [Part6, Tuples & Zip](https://zipcodecore.github.io/curriculum-assets/lectures/python/tuples/content.html) | |
| 39 | + | - [Part 7, Dictionaries](https://zipcodecore.github.io/curriculum-assets/lectures/python/dictionaries/content.html) | |
| 40 | + | - [Part 8, OS Module and Exception Handling](https://zipcodecore.github.io/curriculum-assets/lectures/python/os-module/content.html) | |
| 41 | + | - [Part 9, Persistence](https://zipcodecore.github.io/curriculum-assets/lectures/python/persistence/content.html) | |
| 42 | + | - [Part 10, Classes and Objects](https://zipcodecore.github.io/curriculum-assets/lectures/python/classes/content.html) | |
| 43 | + | - [Part 11, Inheritance](https://zipcodecore.github.io/curriculum-assets/lectures/python/inheritance/content.html) | |
| 44 | + | - [Part 12, Conditional Expressions, Comprehensions, and Generators](https://zipcodecore.github.io/curriculum-assets/lectures/python/conditional-expressions/content.html) | |
| 45 | + | ||