Learn Python, Microsoft 365 and Google Workspace
Problem 1: FizzBuzz
Problem Statement:
Write a program that prints the numbers from 1 to n
. But for multiples of 3, print “Fizz” instead of the number, and for the multiples of 5, print “Buzz”. For numbers which are multiples of both 3 and 5, print “FizzBuzz”.
Input:
n
.Output:
n
, replacing multiples of 3 with “Fizz”, multiples of 5 with “Buzz”, and multiples of both with “FizzBuzz”.Example:
Input:
15
Output:
1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzBuzz
# Write a program to check if a number is positive, negative, or zero.
number = int(input("Enter a number: "))
# Write a program to check if a number is even or odd.
number = int(input("Enter a number: "))
# Write a program to find the largest of three numbers.
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
c = int(input("Enter third number: "))
# Write a program to assign grades based on the score.
score = int(input("Enter your score: "))
# Write a program to check if a year is a leap year or not.
year = int(input("Enter a year: "))
# Write a program to classify age into child, teenager, adult, and senior.
age = int(input("Enter your age: "))
# Write a program to describe the temperature (hot, warm, cold).
temperature = float(input("Enter the temperature: "))
# Write a program to check if a person is eligible to vote.
age = int(input("Enter your age: "))
# Write a program to check the strength of a password.
password = input("Enter your password: ")
# Write a simple calculator program using if-elif-else.
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
operation = input("Enter operation (+, -, *, /): ")
# Write a program to calculate BMI and categorize it (underweight, normal, overweight, obese).
height = float(input("Enter your height in meters: "))
weight = float(input("Enter your weight in kilograms: "))
# Write a program to check the type of a triangle (equilateral, isosceles, scalene).
a = float(input("Enter first side: "))
b = float(input("Enter second side: "))
c = float(input("Enter third side: "))
# Write a program to print the day of the week based on a number (1 for Monday, 7 for Sunday).
day_number = int(input("Enter a number (1-7): "))
# Write a program to convert a numerical score into a letter grade.
score = int(input("Enter your score: "))
# Write a program to print the number of days in a given month.
month = int(input("Enter the month number (1-12): "))
# Write a program to calculate the discount on a product based on the price.
price = float(input("Enter the price of the product: "))
# Write a program to check if a character is a vowel or consonant.
char = input("Enter a character: ").lower()
# Write a program to check if three given lengths can form a triangle.
a = float(input("Enter first side: "))
b = float(input("Enter second side: "))
c = float(input("Enter third side: "))
# Write a program to check if a number is a multiple of five.
number = int(input("Enter a number: "))
# Write a program to check if an alphabet is uppercase or lowercase.
char = input("Enter a character: ")
# Write a simple login system that checks username and password.
username = input("Enter username: ")
password = input("Enter password: ")
# Write a program to check if a number is divisible by 3 and 5.
number = int(input("Enter a number: "))
# Write a program to check if a number is prime.
number = int(input("Enter a number: "))
# Write a program to check if a character is a digit or an alphabet.
char = input("Enter a character: ")
# Write a program to categorize fuel efficiency (excellent, good, average, poor).
mpg = float(input("Enter miles per gallon: "))
# Write a program to classify numbers in a list as odd or even.
numbers = [int(x) for x in input("Enter numbers separated by space: ").split()]
# Write a program to solve a quadratic equation and determine the nature of the roots.
a = float(input("Enter coefficient a: "))
b = float(input("Enter coefficient b: "))
c = float(input("Enter coefficient c: "))
# Write a program to validate the age input by the user (must be between 0 and 120).
age = int(input("Enter your age: "))
# Write a program to check if a student passed or failed based on marks in three subjects.
marks1 = int(input("Enter marks in subject 1: "))
marks2 = int(input("Enter marks in subject 2: "))
marks3 = int(input("Enter marks in subject 3: "))
# Write a program to calculate the total cost of items in a shopping cart and apply discount if applicable.
item1 = float(input("Enter price of item 1: "))
item2 = float(input("Enter price of item 2: "))
item3 = float(input("Enter price of item 3: "))