|
1 |
| -# Learn Python Programming 4th Edition |
| 1 | +# Learn Python Programming, Fourth Edition |
| 2 | +This is the code repository for [Learn Python Programming, Fourth Edition](https://www.packtpub.com/en-us/product/learn-python-programming-9781835882955), published by Packt. |
2 | 3 |
|
3 |
| -Welcome to Learn Python Programming, 4th Edition. |
| 4 | +**A comprehensive, up-to-date, and definitive guide to learning Python** |
4 | 5 |
|
5 |
| -Here you can find the complete source code for this book. Every |
6 |
| -line of code you will find in the book is in this repository, plus |
7 |
| -all the code that we couldn't fit in the book. |
| 6 | +The authors of this book are - [Fabrizio Romano](https://www.linkedin.com/in/gianchub/), [Heinrich Kruger](https://www.linkedin.com/in/heinrichkruger/) |
| 7 | +## About the book |
8 | 8 |
|
9 |
| -## Target Python Version |
| 9 | +Learn Python Programming, Fourth Edition, provides a comprehensive, up-to-date introduction to Python programming, covering fundamental concepts and practical applications. This edition has been meticulously updated to include the latest features from Python versions 3.9 to 3.12, new chapters on type hinting and CLI applications, and updated examples reflecting modern Python web development practices. This Python book empowers you to take ownership of writing your software and become independent in fetching the resources you need. By the end of this book, you will have a clear idea of where to go and how to build on what you have learned from the book. |
10 | 10 |
|
11 |
| -Python 3.12.* |
| 11 | +Through examples, the book explores a wide range of applications and concludes by building real-world Python projects based on the concepts you have learned. This Python book offers a clear and practical guide to mastering Python and applying it effectively in various domains, such as data science, web development, and automation. |
12 | 12 |
|
13 |
| -## Working on a chapter |
14 | 13 |
|
15 |
| -We suggest you create a dedicated virtual environment for each chapter |
16 |
| -you wish to work on. Chapters that require third-party libraries will |
17 |
| -have a folder inside, called `requirements`. |
| 14 | +## Key Takeaways |
| 15 | +- Install and set up Python on Windows, Mac, and Linux |
| 16 | +- Write elegant, reusable, and efficient code |
| 17 | +- Avoid common pitfalls such as duplication and over-engineering |
| 18 | +- Use functional and object-oriented programming approaches appropriately |
| 19 | +- Build APIs with FastAPI and program CLI applications |
| 20 | +- Understand data persistence and cryptography for secure applications |
| 21 | +- Manipulate data efficiently using Python's built-in data structures |
| 22 | +- Package your applications for distribution via the Python Package Index (PyPI) |
| 23 | +- Solve competitive programming problems with Python |
18 | 24 |
|
19 |
| -First you will need to create a virtual environment. If you don't know |
20 |
| -what a virtual environment is, please read Chapter 1. |
21 | 25 |
|
22 |
| -Let's now pretend you want to work on Chapter 7. First, change into the folder |
23 |
| -for Chapter 7 (it's called `ch7`): |
| 26 | +## Outline and Chapter Summary |
24 | 27 |
|
25 |
| - $ cd ch7 |
| 28 | +This book will help you explore the foundations of Python programming and learn how Python can be used to achieve results. |
26 | 29 |
|
27 |
| -Then, create a virtual environment. In this example the virtual environment |
28 |
| -will live inside the chapter's folder, but you can choose any other folder |
29 |
| -that might suit you better. |
| 30 | +1. A Gentle Introduction to Python |
| 31 | +2. Built-In Data Types |
| 32 | +3. Conditionals and Iteration |
| 33 | +4. Functions, the Building Blocks of Code |
| 34 | +5. Comprehensions and Generators |
| 35 | +6. OOP, Decorators, and Iterators |
| 36 | +7. Exceptions and Context Managers |
| 37 | +8. Files and Data Persistence |
| 38 | +9. Cryptography and Tokens |
| 39 | +10. Testing |
| 40 | +11. Debugging and Profiling |
| 41 | +12. Introduction to Type Hinting |
| 42 | +13. Data Science in Brief |
| 43 | +14. Introduction to API Development |
| 44 | +15. CLI Applications |
| 45 | +16. Packaging Python Applications |
| 46 | +17. Programming Challenges, |
30 | 47 |
|
31 |
| - $ python3.12 -m venv .venv |
32 | 48 |
|
33 |
| -We have given the virtual environment folder the name `.venv`. Feel free |
34 |
| -to choose any other name that you might want. |
35 | 49 |
|
36 |
| ---- |
37 | 50 |
|
38 |
| -Note: the above procedure might fail in some of the chapter folders, due |
39 |
| -to the presence of files that aren't meant to be run. If that is the case, you |
40 |
| -should choose another folder where to place your virtual environment. You can |
41 |
| -create one within the chapter folder itself, or place the virtual environment |
42 |
| -outside of the chapter folder altogether. |
| 51 | +> If you feel this book is for you, get your [copy](https://www.amazon.in/Learn-Python-Programming-Comprehensive-Date/dp/B0DC6DYPV2) today! <img alt="Coding" height="15" width="35" src="https://media.tenor.com/ex_HDD_k5P8AAAAi/habbo-habbohotel.gif"> |
43 | 52 |
|
44 |
| ---- |
45 | 53 |
|
46 |
| -Next step is to activate the virtual environment: |
| 54 | +With the following software and hardware list you can run all code files present in the book. |
47 | 55 |
|
48 |
| - $ source .venv/bin/activate |
| 56 | +## Software and hardware list |
49 | 57 |
|
50 |
| -If you're on Windows, to activate your environment, you will need to run: |
| 58 | +| Chapter | Software required | Link to the software | Hardware specifications | OS required | |
| 59 | +|:---: |:---: |:---: |:---: |:---: | |
| 60 | +| All chapters | Python 3.10+ | [https://www.python.org/downloads/](https://www.python.org/downloads/) | Should work on any recent computer | Windows, MacOS, Linux (any), macOS, Windows | |
51 | 61 |
|
52 |
| - $ .venv\Scripts\activate |
53 | 62 |
|
54 |
| -Next, if the `requirements` folder is present, change into it, and run |
55 |
| -the following command for each of the `.txt` files you will find in it. |
56 |
| -Normally there is only a `requirements.txt` file. |
57 | 63 |
|
58 |
| - $ cd requirements |
59 |
| - $ pip install -U -r requirements.txt |
60 |
| - $ cd .. # this brings you back to the root of the chapter |
| 64 | +## Know more on the Discord server <img alt="Coding" height="25" width="32" src="https://cliply.co/wp-content/uploads/2021/08/372108630_DISCORD_LOGO_400.gif"> |
| 65 | +You can get more engaged on the discord server for more latest updates and discussions in the community at [Discord](https://discord.com/invite/uaKmaz7FEC) |
61 | 66 |
|
62 |
| -Once you have installed all requirements, you are ready to run the |
63 |
| -chapter's code. If a chapter needs extra work to be set up, you will |
64 |
| -find all the instructions you need in the chapter's text. |
| 67 | +## Download a free PDF <img alt="Coding" height="25" width="40" src="https://emergency.com.au/wp-content/uploads/2021/03/free.gif"> |
65 | 68 |
|
66 |
| -**Note**: |
67 |
| -Always remember to activate the virtual environment before you install |
68 |
| -third-party libraries. |
| 69 | +_If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost. Simply click on the link to claim your free PDF._ |
| 70 | +[Free-Ebook](https://packt.link/free-ebook/9781835882948) <img alt="Coding" height="15" width="35" src="https://media.tenor.com/ex_HDD_k5P8AAAAi/habbo-habbohotel.gif"> |
| 71 | + |
| 72 | +We also provide a PDF file that has color images of the screenshots/diagrams used in this book at [GraphicBundle](https://packt.link/gbp/9781835882948) <img alt="Coding" height="15" width="35" src="https://media.tenor.com/ex_HDD_k5P8AAAAi/habbo-habbohotel.gif"> |
| 73 | + |
| 74 | + |
| 75 | +## Get to know the Author |
| 76 | +_Fabrizio Romano_ was born in Italy in 1975. He holds a master’s degree in computer science engineering from the University of Padova. He’s been working as a professional software developer since 1999. Fabrizio has been working at Sohonet since 2016, where he currently serves as a development manager. In 2020, the Television Academy honored him and his team with an Emmy Award in Engineering Development for advancing remote collaboration. |
| 77 | + |
| 78 | +_Heinrich Kruger_ was born in South Africa in 1981. He holds a master’s degree in computer science from Utrecht University in the Netherlands. He has been working as a professional software developer since 2014. Heinrich has been working alongside Fabrizio in the Product Team at Sohonet since 2017. In 2020, the Television Academy honored them with an Emmy Award in Engineering Development for advancing remote collaboration. |
| 79 | + |
| 80 | + |
| 81 | +## Other Related Books |
| 82 | +- [Modern Python Cookbook](https://www.packtpub.com/en-us/product/modern-python-cookbook-9781835460757) |
| 83 | +- [Mastering Python 2E](https://www.packtpub.com/en-us/product/mastering-python-2e-9781800202108) |
0 commit comments