What Do You Think?

We welcome ideas, suggestions, feedback, and the occasional rant about the book. Did you find a topic confusing? Or did you find an error in the text or code? Did we omit a topic you would love to know more about? Drop us a line!

Your feedback really helps make this book an even better learning resource for Pythonistas around the globe.

Whatever the reason, good or bad, please send in your feedback at the link below:

realpython.com/python-basics/feedback

Avatar image for avalidzy

avalidzy on April 3, 2020

Where is my Python Basics book pdf? Paid for and downloaded and can’t find it. Been going through several loops ads for the book.

Avatar image for Dan Bader

Dan Bader RP Team on April 3, 2020

@avalidzy: The book files are available for download on the Download Book Files menu item listed at realpython.com/courses/python-basics-book/

Avatar image for JulioPDX

JulioPDX on April 30, 2020

Section 12.3, Missing pattern match when converting to list. Book

for path in new_dir.glob(".txt"):
    print(path)

list(new_dir.glob())

# should be
list(new_dir.glob("*.txt")
Avatar image for JulioPDX

JulioPDX on April 30, 2020

Correction

for path in new_dir.glob("*.txt"):
    print(path)
Avatar image for JulioPDX

JulioPDX on May 4, 2020

Section 12.6, Book states file_path = Path.home() / “temperatures.txt” “This creates a file called temperatures.csv in your home directory”

Should be file_path = Path.home() / “temperatures.csv”

Avatar image for JulioPDX

JulioPDX on May 4, 2020

12.6.1.1 Missing passing in the file object to csv.writer

Book

writer = csv.writer()

Should be

writer = csv.writer(file)
Avatar image for odunayo123

odunayo123 on July 18, 2020

Am trying learn more of python and automate with Python and be the best.

Avatar image for Dan Bader

Dan Bader RP Team on Nov. 7, 2023

Just to get some closure here – all of these issues have been corrected in the release version. Thanks to again everyone who submitted their “early access” feedback here, through the feedback form and links in the book, and Slack!

Avatar image for emanuelkravitz

emanuelkravitz on Feb. 5, 2025

I thought I was getting a physical book. If the physical book is available, I would like a refund on this purchase and buy the physical book instead.

Avatar image for emanuelkravitz

emanuelkravitz on Feb. 5, 2025

Sorry about the previous comment. I just got an email about tracking information, so I guess I am getting a physical book.

You must own this product to join the conversation.