nellorean.com
Python Exercise8: From Nellorean-Recording the history of Nellore
1. Write a program to write all multiple of 7 from 10 to 100 in to a file f=open(‘file1.txt’,’w’) for i in range(14,100,7): f.write(str(i)+ ‘n’) f.close() 2. W…