What you'll learn
- Find the right next book or site
- Join a community to keep learning
- Pick one more skill to add this quarter
Books to read next
- Automate the Boring Stuff with Python — Al Sweigart. Free online at automatetheboringstuff.com. Sister book to this course, more breadth, less Excel-focused.
- Python for Data Analysis — Wes McKinney (the creator of pandas). The deeper dive on every pandas concept we glossed.
- Fluent Python — Luciano Ramalho. When you want to understand the language, not just use it.
Sites worth bookmarking
- pandas user guide — pandas.pydata.org. The official reference; surprisingly readable.
- Real Python — realpython.com. High-quality tutorials.
- Stack Overflow — for every error message you'll ever hit.
Skills to add this quarter
- SQL. If pandas is the Excel-replacement, SQL is the "where the data actually lives" language. Two weekends of practice pays for itself for the rest of your career.
- Git basics. Version control for your scripts. Two hours. You'll never lose work again.
- One specific library deeper. Depending on your job:
requests for APIs, beautifulsoup4 for scraping, plotly for interactive charts, streamlit for tiny web apps.
Communities
- r/learnpython on Reddit — beginner-friendly, helpful answers.
- Python Discord — quick chat-style help.
- Pandas tag on Stack Overflow — search before posting; your question probably has an answer.
The most underrated next move
Pick one script you wrote during this course. Make it 50% better — add error handling, write a docstring for every function, add a small test. The difference between "I tinkered with Python" and "I write Python" is taste, and taste comes from polishing your own work.
And finally — keep this site bookmarked
This whole course is here whenever you need to look something up. New lessons get added when there's something worth saying. Send corrections and lesson requests via the contact page.
Key takeaways
- Read Automate the Boring Stuff next for breadth; Python for Data Analysis for pandas depth.
- Learn SQL and Git — two weekends, lifetime value.
- Polish one of your own scripts. That's the real skill jump.
Your last exercise
Pick one script you wrote during this course. Spend 30 minutes: add a docstring at the top, error handling on the I/O, and a print statement at the end that says how long it took. Save it somewhere safe. That's your first piece of personal infrastructure.
📹 Video walkthrough
A video walkthrough of this lesson will be embedded here. Until then, the
written walkthrough above mirrors what the video will cover step-for-step.