This video walks through on how to use while loop in solving ten easy problems in python. below are the list of problems solved in this video
1. Write a program to print the numbers from 1 to 10 using a while loop.
2. Write a program to print the numbers from 10 to 1 using a while loop.
3. Write a program to print the even numbers between 1 and 10 using a while loop.
4. Write a program to print the odd numbers between 1 and 10 using a while loop.
5. Write a program to print the sum of all the numbers between 1 and 10 using a while loop.
6. Write a program to print the multiplication of all the numbers between 1 and 10 using a while loop.
7. Write a program to print the numbers in a given range using a while loop.
8. Write a program to print the Fibonacci sequence up to a given number using a while loop.
9. Write a program to print the factorial of a given number using a while loop.
10. Write a program to print the prime numbers between 1 and 10 using a while loop.