Here are some questions to practice Python Programming
Q1. Check if a number is prime or not
Q2. Print all prime numbers in a given range. Take minimum and maximum range as input from user.
Q3. Find sum on n natural numbers using atleast 3 different ways
Q4. Count number of digits in a number.
input - 32423
output - 5, as we have number of digits
Q5. Check if a given number is armstrong or not. The Armstrong number definition is the number in any given number base, which forms the total of the same number, when each of its digits is raised to the power of the number of digits in the number.
input - 153
output - true
Q6. Write a program to reverse a given number
input - 12345
output - 54321