Assignment: Python Loops
Q1. Write a Python program using a for loop and range() to print the multiplication table of a
number entered by the user (from 1 to 10).
Q2. Write a Python program using a while loop that repeatedly asks the user to enter a password
until the correct password ('python123') is entered.
Q3. Write a Python program that prints numbers from 1 to 30 using a for loop. Skip numbers
divisible by 3 using continue and stop the loop when the number reaches 25 using break.