├── Chapter 10.zip
├── Chapter 12.zip
├── Chapter 2.zip
├── Chapter 3.zip
├── Chapter 4.zip
├── Chapter 5.zip
├── Chapter 7.zip
├── Chapter 8.zip
├── Chapter 9.zip
├── LICENSE
└── README.md
/Chapter 10.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 10.zip
--------------------------------------------------------------------------------
/Chapter 12.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 12.zip
--------------------------------------------------------------------------------
/Chapter 2.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 2.zip
--------------------------------------------------------------------------------
/Chapter 3.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 3.zip
--------------------------------------------------------------------------------
/Chapter 4.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 4.zip
--------------------------------------------------------------------------------
/Chapter 5.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 5.zip
--------------------------------------------------------------------------------
/Chapter 7.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 7.zip
--------------------------------------------------------------------------------
/Chapter 8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 8.zip
--------------------------------------------------------------------------------
/Chapter 9.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Learn-Programming-in-Python-with-Cody-Jackson/485a27231b3042e3dc8bc22c550d00f6bf9dd9c0/Chapter 9.zip
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Packt
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | # Learn Programming in Python with Cody Jackson
5 |
6 |
7 |
8 | This is the code repository for [Learn Programming in Python with Cody Jackson](https://www2.packtpub.com/application-development/learn-programming-python-cody-jackson), published by Packt.
9 |
10 | **Grasp the basics of programming and Python syntax while building real-world applications**
11 |
12 | ## What is this book about?
13 |
14 | Python is a cross-platform language used by organizations such as Google and NASA. It lets you work quickly and efficiently, allowing you to concentrate on your work rather than the language. Based on his personal experiences when learning to program, Learn Programming in Python with Cody Jackson provides a hands-on introduction to computer programming utilizing one of the most readable programming languages–Python. It aims to educate readers regarding software development as well as help experienced developers become familiar with the Python language, utilizing real-world lessons to help readers understand programming concepts quickly and easily.
15 |
16 | This book covers the following exciting features:
17 | * Use the interactive shell for prototyping and code execution, including variable assignment
18 | * Deal with program errors by learning when to manually throw exceptions
19 | * Employ exceptions for code management
20 | * Enhance code by utilizing Python's built-in shortcuts to improve efficiency and make coding easier Interact with files and package Python data for network transfer or storage
21 | * Understand how tests drive code writing, and vice versa
22 |
23 |
24 | If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1789531942) today!
25 |
26 |
28 |
29 | ## Instructions and Navigations
30 | All of the code is organized into folders. For example, Chapter02.
31 |
32 | The code will look like the following:
33 | ```
34 | import sys
35 | if len(sys.argv) > 1: # Check if arguments are provided
36 | entered_value = sys.argv[1:] # Capture all arguments except program name
37 | ```
38 |
39 | **Following is what you need for this book:**
40 | Learn Programming in Python with Cody Jackson is for beginners or novice programmers who have no programming background and wish to take their first step in software development. This book will also be beneficial for intermediate programmers and will provide deeper insights into effective coding practices in Python
41 |
42 | With the following software and hardware list you can run all code files present in the book (Chapter 1-12).
43 | ### Software and Hardware List
44 | | Chapter | Software required | OS required |
45 | | -------- | ------------------------------------ | ----------------------------------- |
46 | | 2-12 | Python 3.6+ | Windows, Mac OS X, and Linux (Any) |
47 | | 8 | Python 3.6+, Pytest 3.5+ | Windows, Mac OS X, and Linux (Any) |
48 | | 12 | Python 3.6+, Kivy 1.10+ | Windows, Mac OS X, and Linux (Any) |
49 |
50 |
51 | We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://www.packtpub.com/sites/default/files/downloads/9781789531947_ColorImages.pdf).
52 |
53 | ### Related product
54 | * Learn Python Programming - Second Edition [[Packt]](https://www.packtpub.com/application-development/learn-python-programming-second-edition?utm_source=github&utm_medium=repository&utm_campaign=9781788996662) [[Amazon]](https://www.amazon.com/dp/1788996666)
55 |
56 | ## Get to Know the Author
57 | **Cody Jackson**
58 | is a disabled military veteran, founder of Socius Consulting and co-founder of Top Men Technologies. He is currently employed at CACI International as the lead ICS/SCADA modeling and simulations engineer. He has been involved in the tech industry since 1994, when he left Gateway Computers to join the Navy as a nuclear chemist and radcon technician. Prior to joining CACI, he worked at ECPI University as a Computer Information Systems adjunct professor. He is a self-taught Python programmer, author of Learning to Program Using Python, and Secret Recipes of the Python Ninja. He holds an AS in Electromechanical Technology, a BS in Computer Engineering Technology, and an MS in IT Management, as well as numerous IT certifications.
59 |
60 | ## Other books by the author
61 | [Secret Recipes of the Python Ninja](https://www.packtpub.com/application-development/secret-recipes-python-ninja?utm_source=github&utm_medium=repository&utm_campaign=9781788294874)
62 |
63 | ### Suggestions and Feedback
64 | [Click here](https://docs.google.com/forms/d/e/1FAIpQLSdy7dATC6QmEL81FIUuymZ0Wy9vH1jHkvpY57OiMeKGqib_Ow/viewform) if you have any feedback or suggestions.
65 |
66 |
67 | ### Download a free PDF
68 |
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 |