Python Basics A Practical Introduction to Python 3 1st edition Edition by David Amos, Dan Bader, Joanna Jablonski, Fletcher Heisler – Ebook PDF Instant Download/Delivery: 1775093328, 978- 1775093329
Full download Python Basics A Practical Introduction to Python 3 1st Edition after payment
Product details:
ISBN 10: 1775093328
ISBN 13: 978-1775093329
Author: David Amos, Dan Bader, Joanna Jablonski, Fletcher Heisler
Make the Leap From Beginner to Intermediate in Python…
Python Basics: A Practical Introduction to Python 3
Your Complete Python Curriculum—With Exercises, Interactive Quizzes, and Sample Projects
What should you learn about Python in the beginning to get a strong foundation? With Python Basics, you’ll not only cover the core concepts you really need to know, but you’ll also learn them in the most efficient order with the help of practical exercises and interactive quizzes. You’ll know enough to be dangerous with Python, fast!
Who Should Read This Book
- If you’re new to Python, you’ll get a practical, step-by-step roadmap on developing your foundational skills. You’ll be introduced to each concept and language feature in a logical order. Every step in this curriculum is explained and illustrated with short, clear code samples. Our goal with this book is to educate, not to impress or intimidate.
- If you’re familiar with some basic programming concepts, you’ll get a clear and well-tested introduction to Python. This is a practical introduction to Python that jumps right into the meat and potatoes without sacrificing substance. If you have prior experience with languages like VBA, PowerShell, R, Perl, C, C++, C#, Java, or Swift the numerous exercises within each chapter will fast-track your progress.
- If you’re a seasoned developer, you’ll get a Python 3 crash course that brings you up to speed with modern Python programming. Mix and match the chapters that interest you the most and use the interactive quizzes and review exercises to check your learning progress as you go along.
- If you’re a self-starter completely new to coding, you’ll get practical and motivating examples. You’ll begin by installing Python and setting up a coding environment on your computer from scratch, and then continue from there. We’ll get you coding right away so that you become competent and knowledgeable enough to solve real-world problems, fast. Develop a passion for programming by solving interesting problems with Python every day!
- If you’re looking to break into a coding or data-science career, you’ll pick up the practical foundations with this book. We won’t just dump a boat load of theoretical information on you so you can “sink or swim”—instead you’ll learn from hands-on, practical examples one step at a time. Each concept is broken down for you so you’ll always know what you can do with it in practical terms.
- If you’re interested in teaching others “how to Python,” this will be your guidebook. If you’re looking to stoke the coding flame in your coworkers, kids, or relatives—use our material to teach them. All the sequencing has been done for you so you’ll always know what to cover next and how to explain it.
What Python Developers Say About The Book:
“Go forth and learn this amazing language using this great book.” — Michael Kennedy, Talk Python
“The wording is casual, easy to understand, and makes the information flow well.” — Thomas Wong, Pythonista
“I floundered for a long time trying to teach myself. I slogged through dozens of incomplete online tutorials. I snoozed through hours of boring screencasts. I gave up on countless crufty books from big-time publishers. And then I found Real Python. The easy-to-follow, step-by-step instructions break the big concepts down into bite-sized chunks written in plain English. The authors never forget their audience and are consistently thorough and detailed in their explanations. I’m up and running now, but I constantly refer to the material for guidance.” — Jared Nielsen, Pythonista
Python Basics A Practical Introduction to Python 3 1st Table of contents:
Introduction
1.1 Why This Book?
1.2 About Real Python
1.3 How to Use This Book
1.4 Bonus Material and Learning Resources
Setting Up Python
2.1 A Note on Python Versions
2.2 Windows
2.3 macOS
2.4 Ubuntu Linux
Your First Python Program
3.1 Write a Python Program
3.2 Mess Things Up
3.3 Create a Variable
3.4 Inspect Values in the Interactive Window
3.5 Leave Yourself Helpful Notes
3.6 Summary and Additional Resources
Strings and String Methods
4.1 What Is a String?
4.2 Concatenation, Indexing, and Slicing
4.3 Manipulate Strings With Methods
4.4 Interact With User Input
4.5 Challenge: Pick Apart Your User’s Input
4.6 Working With Strings and Numbers
4.7 Streamline Your Print Statements
4.8 Find a String in a String
4.9 Challenge: Turn Your User Into a L33t H4x0r
4.10 Summary and Additional Resources
Numbers and Math
5.1 Integers and Floating-Point Numbers
5.2 Arithmetic Operators and Expressions
5.3 Challenge: Perform Calculations on User Input
5.4 Make Python Lie to You
5.5 Math Functions and Number Methods
5.6 Print Numbers in Style
5.7 Complex Numbers
5.8 Summary and Additional Resources
Functions and Loops
6.1 What Is a Function, Really?
6.2 Write Your Own Functions
6.3 Challenge: Convert Temperatures
6.4 Run in Circles
6.5 Challenge: Track Your Investments
6.6 Understand Scope in Python
6.7 Summary and Additional Resources
Finding and Fixing Code Bugs
7.1 Use the Debug Control Window
7.2 Squash Some Bugs
7.3 Summary and Additional Resources
Conditional Logic and Control Flow
8.1 Compare Values
8.2 Add Some Logic
8.3 Control the Flow of Your Program
Tuples, Lists, and Dictionaries
9.1 Tuples Are Immutable Sequences
9.2 Lists Are Mutable Sequences
9.3 Nesting, Copying, and Sorting Tuples and Lists
9.4 Challenge: List of Lists
9.5 Challenge: Wax Poetic
9.6 Store Relationships in Dictionaries
9.7 Challenge: Capital City Loop
9.8 How to Pick a Data Structure
9.9 Challenge: Cats With Hats
9.10 Summary and Additional Resources
Object-Oriented Programming (OOP)
10.1 Define a Class
10.2 Instantiate an Object
10.3 Inherit From Other Classes
10.4 Challenge: Model a Farm
10.5 Summary and Additional Resources
Modules and Packages
11.1 Working With Modules
11.2 Working With Packages
11.3 Summary and Additional Resources
File Input and Output
12.1 Files and the File System
12.2 Working With File Paths in Python
12.3 Common File System Operations
12.4 Challenge: Move All Image Files to a New Directory
Installing Packages With pip
13.1 Installing Third-Party Packages With pip
13.2 The Pitfalls of Third-Party Packages
13.3 Summary and Additional Resources
Creating and Modifying PDF Files
14.1 Extracting Text From a PDF
14.2 Extracting Pages From a PDF
14.3 Challenge: PdfFileSplitter Class
14.4 Concatenating and Merging PDFs
14.5 Rotating and Cropping PDF Pages
14.6 Encrypting and Decrypting PDFs
14.7 Challenge: Unscramble a PDF
14.8 Creating a PDF File From Scratch
14.9 Summary and Additional Resources
Working With Databases
15.1 An Introduction to SQLite
15.2 Libraries for Working With Other SQL Databases
15.3 Summary and Additional Resources
Interacting With the Web
16.1 Scrape and Parse Text From Websites
16.2 Use an HTML Parser to Scrape Websites
16.3 Interact With HTML Forms
16.4 Interact With Websites in Real Time
16.5 Summary and Additional Resources
Scientific Computing and Graphing
17.1 Use NumPy for Matrix Manipulation
17.2 Use Matplotlib for Plotting Graphs
17.3 Summary and Additional Resources
Graphical User Interfaces
18.1 Add GUI Elements With EasyGUI
18.2 Example App: PDF Page Rotator
18.3 Challenge: PDF Page Extraction Application
18.4 Introduction to Tkinter
18.5 Working With Widgets
18.6 Controlling Layout With Geometry Managers
18.7 Making Your Applications Interactive
18.8 Example App: Temperature Converter
18.9 Example App: Text Editor
18.10 Challenge: Return of the Poet
18.11 Summary and Additional Resources
Final Thoughts and Next Steps
19.1 Free Weekly Tips for Python Developers
19.2 Python Tricks: The Book
19.3 Real Python Video Course Library
19.4 Acknowledgements
People also search for Python Basics A Practical Introduction to Python 3 1st :
python basics a practical introduction to python 3 pdf
a practical introduction to python programming
borrow python basics a practical introduction to python 3
practical deep learning a python-based introduction
download python basics a practical introduction to python 3
Tags:
David Amos,Dan Bader,Joanna Jablonski,Fletcher Heisler,Python,Basics,Practical,Introduction,Python 3 1st