nellorean.com
Python Exercise4: From Nellorean-Recording the history of Nellore
1. Write a program to create list of squares of all odd numbers below 50 and print the list. a=[] for x in range(1,50,2): a.append(x*x) print(a) 2.Initialize a varia…