Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Python Illustrated

You're reading from   Python Illustrated Not another boring Python book, learn programming the fun way

Arrow left icon
Product type Paperback
Published in Feb 2026
Publisher Packt
ISBN-13 9781836646334
Length 432 pages
Edition 1st Edition
Languages
Arrow right icon
Authors (2):
Arrow left icon
Maaike van Putten Maaike van Putten
Author Profile Icon Maaike van Putten
Maaike van Putten
Imke van Putten Imke van Putten
Author Profile Icon Imke van Putten
Imke van Putten
Arrow right icon
View More author details
Toc

Table of Contents (19) Chapters Close

Preface 1. Introduction
2. Get Your Computer Ready to Code Python FREE CHAPTER 3. Understanding Variables and Data Types 4. Working with Conditional Statements 5. Using Lists, Tuples, and Dictionaries 6. Iterating with Loops 7. Writing Functions and Using Built-In Functions 8. Handling Files and Exceptions 9. Creating and Using Classes 10. Understanding Inheritance 11. Debugging Our Code 12. Next Steps 13. Unlock Your Exclusive Benefits 14. Other Books You May Enjoy
15. Index
Appendix A: Exercise Files 1. Appendix B: Quiz Answers 2. Appendix C: Exercise Solutions

Encapsulation in Python

So, what is encapsulation? If you think about the meaning, it’s pretty much that something is wrapped around something. This is the case in coding as well. Encapsulation is the idea of hiding internal state (the value of the attributes) and requiring all interaction to be performed through an object’s methods.

This is not just a Python concept; it’s a universal concept. For Python, it works a little funky because true privacy is not strictly enforced in Python. Instead, we work with naming conventions we can follow to tell everyone who uses our code: “This is internal, please don’t touch directly.”

Here’s how the naming conventions work.

Public versus private naming conventions

By default, everything is public. We can use a leading underscore (_) to indicate that a variable or method is private. For example, _secret_attribute. A double underscore (__) triggers some internal magic (more on...

lock icon The rest of the chapter is locked
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Python Illustrated
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Modal Close icon
Modal Close icon