#write a program that randomly generates a list of 10 integers #each integer between 5 and 15 #program prints randomly generated list and for each list element #program prints square of the list element and square root of list elements import random import math def main(): my_list=[0]*10 for i in range(10): my_list[i]=random.randint(5,15) print("list value\tsquare\tsqrt") for i in range(10): print(my_list[i],"\t\t",my_list[i]**2,"\t",math.sqrt(my_list[i])) main()