📘 Project 2: Pattern Generator and Number Analyzer 📌 Introduction
This is my second Python project. It is a simple menu-driven program made using Python.
The program can:
•Generate a star pattern Prints a triangle star pattern based on user input. •Analyze numbers in a range ->Check even and odd numbers ->Find the sum of numbers •Exit the program
🧠 Variables Used Variable Use choice | Stores user menu choice i | Used in loops a | Controls pattern rows b | Prints stars total | Stores total sum c | Starting number d | Ending number
💻 Concepts Used •while loop •for loop •Nested loop •if-else •match-case •User input