1.
Number Guessing Game
The computer randomly selects a number.
You try to guess it in as few tries as possible.
Use: random, input(), if conditions.
2. Simple Calculator
Performs addition, subtraction, multiplication, and division.
Ask for two numbers and an operation.
Use: input(), float(), if/elif.
3. To-Do List in Console
Add, remove, and view tasks using a numbered menu.
Use: list, loops, input().
4. Even or Odd Checker
Input a number, and the program tells you if it’s even or odd.
Use: % (modulo operator), conditionals.
5. Countdown Timer
Ask the user how many seconds to count down from.
Print countdown every second.
Use: [Link](), loops.
6. Mad Libs Generator
Ask the user for nouns, verbs, adjectives, etc., and insert them into a story.
Use: string formatting or f-strings.
7. Simple Password Generator
Generate random passwords with letters, numbers, and symbols.
Use: random, string module.
8. Dice Roller Simulator
Simulate rolling one or two dice.
Output the result and ask if the user wants to roll again.