Assignment 1 Write a for loop which iterates through a list of numbers and find the square root of each number. numbers are 1369, 7225, 3364, 7056, 5625, 729, 7056, 576, 2916 Assignment 2 Print the square root of numbers in the list. And this time let us do it right in the IPython interpreter. So let us create a list. Assignment 3 Find the cube of all the numbers from one to ten. But this time let us try it in the vanilla version of Python interpreter. Assignment 4 Print all the odd numbers from 1 to 50. Let us do it in our IPython interpreter for ease of use. Assignment 5 Indentation is not mandatory in Python True False Write a code using for loop to print the product of all natural numbers from 1 to 20. What will be the output of- range(1,5)