#write a function make_list_random that has 3 parameters #size of the list, low bound and upper bound for random generated integer #function returns randomly generated list #write main to test the function import random def make_list_random(size, low, upper): my_list=[] for i in range(size): my_list.append(random.randint(low, upper)) return my_list def main(): size=int(input("enter size of the list ")) my_list=make_list_random(size, 0,100) print(my_list) main()