
Hands-on exercises to practice conditional statements and loops
This chapter covers the control flow structures in Python programming:
Create a program that checks if a number is positive, negative, or zero.
Create a program that converts a numerical score to a letter grade.
Create a program that prints the multiplication table for a given number.
Create a number guessing game using a while loop.
Create a program that demonstrates the use of break and continue.
Create a program that uses nested loops to print patterns.
Create the classic FizzBuzz program that prints numbers with replacements.
Create a program that checks if a number is prime.
Create a program that processes a list of numbers using loops.