By Stephen Singer
This repository contains original learning materials, hands-on exercises, and code examples for a Python Programming Fundamentals course.
It is structured for complete beginners, but can also serve as a crash course for experienced developers who want to quickly get up to speed with Python. The program covers core syntax, control structures, data structures, and object-oriented design — then branches into intermediate topics like file I/O, basic GUI development, and web fundamentals.
Learning to program is not always easy. But the ability to break down problems, write logical solutions, and build working software is one of the most rewarding and empowering skills you can develop today. This course was designed to help you get there with structure, practice, and a bit of fun along the way.
By the end of the course, you should be able to:
- Read, write, and debug non-trivial Python programs
- Solve beginner to intermediate programming problems
- Build and understand small-scale software projects
- Decide which specific path in tech you'd like to pursue next
Suggested flow:
- Read through the slides
- Run and experiment with the sample code
- Attempt the exercises
- Review the labs or projects to apply what you've learned
- Check your solution with the given solution and look for improvements
The material is designed for a 4-day bootcamp:
- 9 hours/day, with short breaks and longer lab periods
- Ideal for fast learners or those with prior coding experience
For absolute beginners, a 2-week pace is recommended:
- 4 hours/day, 5 days a week
- Allows for deeper review, repetition, and exploration
You can also do both: finish the bootcamp at full speed, then revisit everything slowly with real-world projects.
Each day contains slide decks, code samples, hands-on exercises, and lab activities.
Day | Topics |
---|---|
Day 1 | Introduction, input/output, variables, control flow, functions |
Day 2 | Lists, tuples, dictionaries, sets, comprehension, strings, file handling |
Day 3 | Classes, object-oriented programming principles, GUI programming (tkinter) |
Day 4 | Modules, libraries, best practices, web development introduction |
- Download Python
- ☑️ Enable "Add Python to PATH"
- ☑️ Enable "Use admin privileges when installing py.exe"
- Download PyCharm
- While any editor works (VS Code, Sublime, etc.), all examples here are aligned with PyCharm for consistency.
If you're not using PyCharm, you can run any .py
file with:
python filename.py
On macOS/Linux, use:
python3 filename.py
To open an interactive shell:
python
# or
python3
To avoid version conflicts, create a virtual environment:
python -m venv venv
source venv/bin/activate # macOS/Linux
venv\Scripts\activate # Windows
Then install packages as needed:
pip install flask
- Sign up at GitHub and fork this repository.
- In PyCharm:
- Click "Get from Version Control"
- Paste your fork URL
- Log in with your GitHub account if prompted
- When asked to configure interpreter:
- Add a local Python interpreter via "Add Python Interpreter" → OK
A visual guide is available in the Day 1 Slides
Alternatively, if you're comfortable with Git:
git clone https://github.com/Ayumu098/python-bootcamp.git
Then open the folder in your preferred editor.
- Basic computer skills (navigating folders, installing software)
- Curiosity, patience, and a willingness to learn by doing
- No prior programming experience needed
- Automate the Boring Stuff with Python – Al Sweigart
- Python Crash Course – Eric Matthes
- Fluent Python – Luciano Ramalho
After completing this bootcamp, try:
- A 100 Days of Code challenge
- Building a personal project (blog, tracker, automation tool)
- Contributing to a beginner-friendly open-source project
- Exploring specializations: data science, web dev, game dev, automation
See the Bonus Slides for:
- Functional programming
- OpenPyXL (Excel automation)
- Pandas (data science)
- Streamlit (simple web apps)
- BeautifulSoup (web scraping)
These aren't covered in-depth during the bootcamp but are excellent next steps.
These beginner/intermediate projects are great for practice:
If you encounter any bugs or have suggestions for improvement, feel free to open an issue.
Forking and adapting this repo for your own training sessions or learning goals is encouraged.
This bootcamp is a starting point — not a finish line. The goal is to build a strong mental model of how code works, and to practice applying it until it becomes second nature.
Learning to code is tough. It’s frustrating, messy, and non-linear. But it’s also one of the most valuable, empowering skills you can build — not just for your career, but for your confidence.
If you make it through, even once, you're already ahead of most people.
Good luck and happy coding
This project is licensed under the MIT License.
Feel free to fork, modify, and use it for your own learning or teaching.