Learn Python, Microsoft 365 and Google Workspace
Basic Exercises
for
loop to print the word “Python” five times.
for
loop to print numbers from 1 to 10.
for
loop to print all even numbers from 2 to 20.for
loop to iterate through the string “Hello, World!” and print each character.
for
loop to calculate the factorial of a given number, e.g., 5! = 5 × 4 × 3 × 2 × 1.
for
loop to print numbers from 10 down to 1.
Intermediate Exercises
for
loop to print the multiplication table for the number 5.
for
loop to generate the first 10 numbers in the Fibonacci sequence.for
loop to check if a given number is prime.for
loop to calculate the sum of the digits of a given number, e.g., 1234.for
loops to print the following pattern:
*
**
***
****
*****
for
loop to print all odd numbers between 1 and 20.for
loop to count the number of vowels in the string “Hello, World!”.Advanced Exercises
for
loop to generate a list of even numbers between 1 and 20.for
loop to print all numbers between 1 and 50 that are divisible by both 3 and 5.for
loops to print the following pattern:
1
12
123
1234
12345
for
loop to print all multiples of 3 up to 30.for
loop to print all numbers between 1 and 100 that are divisible by both 7 and 11.
Here are some beginner-friendly Python while loop exercises:
Write a program using a while loop to print numbers from 1 to 10.
Write a program that asks the user for a number n
and calculates the sum of numbers from 1 to n
using a while loop.
Write a program to print the multiplication table of a given number using a while loop.
Ask the user to enter a number and print its reverse using a while loop.
Write a program to count the number of digits in a given number using a while loop.
Create a program to calculate the factorial of a given number using a while loop.
Write a program to print even numbers between 1 and 20 using a while loop.
Create a loop that runs infinitely until the user types “stop”.
Write a program to calculate the sum of digits of a given number using a while loop.
Create a simple number guessing game:
Write a program to Count Occurrence of a Specific Digit in a Number using Python.