Learn with Yasir

Learn Python, Microsoft 365 and Google Workspace

Home

Share Your Feedback

Python Exercises for Beginners: Conditional Statements (if elif else)

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:

  • The first and only line contains the integer n.

Output:

  • Print numbers from 1 to 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
  1. Check Positive, Negative, or Zero
    # Write a program to check if a number is positive, negative, or zero.
    number = int(input("Enter a number: "))
    
  2. Even or Odd
    # Write a program to check if a number is even or odd.
    number = int(input("Enter a number: "))
    
  3. Largest of Three Numbers
    # 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: "))
    
  4. Grade Assignment
    # Write a program to assign grades based on the score.
    score = int(input("Enter your score: "))
    
  5. Leap Year Check
    # Write a program to check if a year is a leap year or not.
    year = int(input("Enter a year: "))
    
  6. Age Group Classification
    # Write a program to classify age into child, teenager, adult, and senior.
    age = int(input("Enter your age: "))
    
  7. Temperature Description
    # Write a program to describe the temperature (hot, warm, cold).
    temperature = float(input("Enter the temperature: "))
    
  8. Voter Eligibility
    # Write a program to check if a person is eligible to vote.
    age = int(input("Enter your age: "))
    
  9. Password Strength Checker
    # Write a program to check the strength of a password.
    password = input("Enter your password: ")
    
  10. Simple Calculator
    # 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 (+, -, *, /): ")
    

  11. BMI Calculator
    # 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: "))
    
  12. Triangle Type Checker
    # 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: "))
    
  13. Day of the Week
    # 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): "))
    
  14. Letter Grade Assignment
    # Write a program to convert a numerical score into a letter grade.
    score = int(input("Enter your score: "))
    
  15. Month Days
    # Write a program to print the number of days in a given month.
    month = int(input("Enter the month number (1-12): "))
    
  16. Discount Calculator
    # Write a program to calculate the discount on a product based on the price.
    price = float(input("Enter the price of the product: "))
    
  17. Character Checker
    # Write a program to check if a character is a vowel or consonant.
    char = input("Enter a character: ").lower()
    
  18. Valid Triangle Checker
    # 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: "))
    
  19. Multiples of Five
    # Write a program to check if a number is a multiple of five.
    number = int(input("Enter a number: "))
    
  20. Alphabet Case Checker
    # Write a program to check if an alphabet is uppercase or lowercase.
    char = input("Enter a character: ")
    

  21. Login System
    # Write a simple login system that checks username and password.
    username = input("Enter username: ")
    password = input("Enter password: ")
    
  22. Divisibility Check
    # Write a program to check if a number is divisible by 3 and 5.
    number = int(input("Enter a number: "))
    
  23. Prime Number Checker
    # Write a program to check if a number is prime.
    number = int(input("Enter a number: "))
    
  24. Digit or Alphabet Checker
    # Write a program to check if a character is a digit or an alphabet.
    char = input("Enter a character: ")
    
  25. Fuel Efficiency
    # Write a program to categorize fuel efficiency (excellent, good, average, poor).
    mpg = float(input("Enter miles per gallon: "))
    
  26. Odd or Even List
    # 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()]
    
  27. Quadratic Equation Solver
    # 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: "))
    
  28. User Age Validator
    # Write a program to validate the age input by the user (must be between 0 and 120).
    age = int(input("Enter your age: "))
    
  29. Student Result System
    # 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: "))
    
  30. Shopping Cart Total
    # 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: "))