Python Exercise While Loop, For Loop, Function 1. Write a loop to print numbers from 10 to 0. 2. Write a loop to print from 0 to 20 with step of 3. For example, 0 3 6 9 12 ... 3. Write a program that asks the user for a positive integer value. The program should write all the integers from 1 up to the number entered. For example, if the user enters 15, the loop will write 1, 2, 3, 4, ... 15. 4. Write a loop that will ask the user to enter their scores of five homework. Each time it prints ‘Good’ if the score is greater than or equal to, otherwise it prints ‘Need Improvement’. 5. Write a function called Calculator_Banner that does not have any input parameters or does not accept two any arguments and prints the following banner. **************** * CALCULATOR * **************** 6. Write a function called Addition that accepts two numbers as input, calculates the sum of the numbers and returns the sum of the two arguments. 7. Write another function called main. The main() function asks the user to input two numbers and stores the numbers. First it calls Calculator_Banner function to draw the banner (like above). Then it calls the Addition function with the number arguments provided by the user and prints the output that Addition returns. 8. Write a function Find_Max that accepts two numbers as arguments and prints the largest number two. Write another function main, in main() function accept two numbers from user and call Find_Max.