Python Bootcamp 2020 Build 15 Working Applications | And Games

Here’s a structured write-up for a course titled “Python Bootcamp 2020: Build 15 Working Applications and Games” — ideal for a portfolio, course description, or review.

Python Bootcamp 2020: Build 15 Working Applications and Games Course Overview The Python Bootcamp 2020 was a project-driven, intensive program designed to take beginners from basic syntax to confident developers by building 15 complete, real-world applications and games . Unlike traditional courses that focus only on theory, this bootcamp emphasized learning by doing — each project added new skills, from core programming concepts to intermediate topics like file handling, APIs, and object-oriented programming (OOP). By the end of the bootcamp, participants had a portfolio of 15 working Python projects — ranging from interactive games to productivity tools — that demonstrated practical coding ability.

Projects Breakdown The 15 applications and games were grouped into three tiers: Tier 1: Beginner Foundations (Projects 1–5)

Mad Libs Generator

Skills : Variables, string concatenation, input() A word-game that takes user inputs (noun, verb, adjective) and inserts them into a pre-written story.

Number Guessing Game

Skills : Loops, conditionals, random module Computer picks a random number; user guesses until correct, with hints (“too high/low”). python bootcamp 2020 build 15 working applications and games

Rock, Paper, Scissors

Skills : Random choice, user input, game logic Classic game against the computer, with score tracking and replay option.

Simple Calculator

Skills : Functions, arithmetic, error handling Supports +, -, ×, ÷, with a loop for continuous calculations.

Dice Rolling Simulator