Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 801 Bytes

File metadata and controls

32 lines (24 loc) · 801 Bytes

Python Control Flow Practice

Overview

This project demonstrates foundational Python programming concepts through a set of small programs focused on control flow and loops.

Features

  • Collatz sequence generator (while loop)
  • Prime number checker (for loop)
  • Multiplication table (nested loops)
  • Statistics dashboard with bar chart

Concepts Practiced

  • While loops
  • For loops
  • Nested loops
  • Conditionals
  • Basic data processing

How to Run

python control_flow_practice.py

Follow the prompts in the terminal.

## Project Background

This project began as part of a Computer Science course. I implemented the full solution myself and later organized it for portfolio use.

## Future Improvements
- Add input validation
- Refactor into smaller functions
- Add a menu system