Store your first name, middle name, and last name in separate variables. Print your full name with combining the three variables. All characters in your full name should be upper case.
Use for loops and range function to create the square value of odd numbers from 1 to 20 (the output of this program should be: 1, 9, 25, 49, ..., 361).
Use the statistics package to calculate median and standard deviation of the numbers you created in Question 2.
Create a program that asks the user to enter her/his age. If the user is 21 years old or older, the program prints the year that the user was born (such as: “you were born in 1990”). If the user is under 21 years old, the program prints the year that the user will turn 21 years old (such as: “you will turn 21 years old in 2025”).