Create a basic calculator that can perform addition, subtraction, multiplication, and division.
Write the following code:
def calculator():
print("Welcome to the simple calculator!")
num1 = float(input("Enter first number: "))
operation = input("Choose operation (+, -, *, /): ")
num2 = float(input("Enter second number: "))
if operation == '+':
print(f'The result is: {num1 + num2}')
elif operation == '-':
print(f'The result is: {num1 - num2}')
elif operation == '*':
print(f'The result is: {num1 * num2}')
elif operation == '/':
print(f'The result is: {num1 / num2}')
else:
print("Invalid operation!")
calculator()
Run the program and enjoy calculating!
Build a game where the computer randomly selects a number, and the player has to guess it.
import random
def guess_the_number():
number = random.randint(1, 100)
guess = 0
print("Guess a number between 1 and 100")
while guess != number:
guess = int(input("Enter your guess: "))
if guess < number:
print("Too low! Try again.")
elif guess > number:
print("Too high! Try again.")
else:
print("Congratulations! You guessed it!")
guess_the_number()
Create a simple to-do list application to help manage tasks.
Write the following code:
tasks = []
def add_task(task):
tasks.append(task)
print(f'Task "{task}" added!')
def show_tasks():
print("Your To-Do List:")
for task in tasks:
print(f'- {task}')
while True:
action = input("Enter 'add' to add a task or 'show' to view tasks (or 'quit' to exit): ")
if action == 'add':
task = input("Enter a task: ")
add_task(task)
elif action == 'show':
show_tasks()
elif action == 'quit':
break
else:
print("Invalid action!")
Use your to-do list to keep track of your daily tasks!
Use the Turtle graphics library to create fun drawings.
import turtle
def draw_square():
for _ in range(4):
turtle.forward(100)
turtle.right(90)
draw_square()
turtle.done()
These fun Python projects are perfect for young coders to expand their skills while having a great time. Encourage your kids to modify the code and make these projects their own! Happy coding!