By Stephen Singer
This repository contains original learning materials, hands-on exercises, and code snippets 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 get up to speed with Python. The program covers core syntax, control structures, data structures, and object-oriented design. It then branches into intermediate topics like file input and output, basic app 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 opt for a 4-week pace
- 2 hours/day, 5 days a week
- Maximize retention and reinforces habit with much less stress
For a busy schedule, you can also opt for 16-weeks (university pacing)
- 3 hours/week, either in a single day or divided across days
- Easier maintenance but might hurt retention if schedule is inconsistent
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.
If you don’t want to install Python right away, you can use Google Colab. It's like Google Docs, but for Python code.
- Go to colab.research.google.com
- Click "New Notebook"
- You can write and run Python directly in your browser (no setup required)
It’s great for experimenting and practicing, but keep in mind:
- Files don’t persist locally unless you download them or connect Colab to your Google Drive.
- Some libraries may not be preinstalled. You can add them with
!pip install library-name
- GUI apps (like tkinter) won’t work. Colab is best for console-based code, data science, and quick prototypes.
- Basic computer skills (navigating folders, installing software)
- Curiosity, patience, and a willingness to learn by doing
- 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 folder 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 they are excellent warmups.
These beginner/intermediate projects are great for practice:
Packaging Python as Executables / Apps
You can ship Python programs as .exe (Windows) or runnable apps (Mac/Linux) so users don’t need Python installed.
pip install pyinstaller
pyinstaller --onefile your_script.py
- Output:
dist/your_script.exe
(or binary). - Docs: PyInstaller Manual
pip install cx_Freeze
cxfreeze your_script.py --target-dir dist/
- Output: folder with executable.
- Docs: cx_Freeze Docs
pip install py2exe
python setup.py py2exe
Requires a setup.py
script.
Docs: py2exe Guide
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.
If you have any questions or further inquiries, you can email me at [email protected]
No. Python is free and open-source. PyCharm is free Community Edition which is all you need for this course.
This bootcamp is a launchpad, not the destination. You'll walk away with a solid foundation and the confidence to read, write, and debug Python programs. However, being job-ready usually takes more practice, more projects, and deeper specialization (like web development, data science, or automation). Fully appreciate the fundamentals so that any advanced topic is easier to approach.
Think of this as learning to ride a bike. You won’t be racing yet, but you’ll know how to balance, steer, and pedal.
Great. That means there's more to learn. Programming is 50% getting stuck. Not even senior developers can code without errors or completely understand code. Like any technical skill, it requires careful steps and practice until it becomes familiar.
Walk away from the keyboard. Eat a snack, take a nap, or do something else. Problems often solve themselves when you come back with a fresh brain. Another good thing to do if you're stuck is to explain the problem to a friend. They can give fresh insights and your effort to explain can sometimes reveal logical gaps you may have missed.
Ask questions during the session, Google a lot, and use the repo’s issues page or email if you need extra help.
Here are some techniques to help debug code:
- Show Everything: Add
print()
or log statements to check what your variables look like at each step. - Go Step by Step: Don’t try to debug the whole program at once. Isolate the smallest piece that's broken.
- Use a Debugger: Tools like PyCharm’s debugger or pdb let you pause code and inspect it line by line.
- Reproduce the Bug: If you can make the error happen consistently, you’re halfway to fixing it.
-
Practice Smart: Solve problems, then check solutions once finished, or after you hit a wall. Looking at the solution isn't cheating. it’s learning. The goal is to bridge the gap between what you tried and how it could be done better. This leads to the next point.
-
Spot Patterns: Most problems you face are just remixes of old problems. Learn common patterns (loops, conditions, recursion, searching, sorting) and you’ll start seeing them everywhere. This is where formal books and forums come in handy.
-
Build Experience: At first, coding feels like crawling through mud. But every problem you solve makes the next one faster. One day you look back and realize something that used to take you hours now takes minutes.
- Scope the Problem: Figure out what’s actually being asked. Ignore fluff. Focus on inputs, outputs, and what the code needs to do.
- Think Like a Human: Solve it by hand first, step by step, before touching code.
- List Unknowns: Write down everything you don’t understand, then research one by one. If you hit a wall, ask for help.
- Make it Work First: Pretty code comes later. Get any working solution first, then refactor for readability or efficiency.
- Use Libraries: Don’t reinvent the wheel. If Python already has a function for it, use it.
No mandatory homework. Instead, you’re encouraged to revisit your own code and make it better. Try the harder labs if you want a challenge, or tweak your previous solutions to be cleaner and more efficient.
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.