0% found this document useful (0 votes)
7 views2 pages

Fun Python Projects for Beginners

Uploaded by

Ehsan Alhawaj
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

Fun Python Projects for Beginners

Uploaded by

Ehsan Alhawaj
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

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.

You might also like