Boxes of O's

geniusrko at gmail.com geniusrko at gmail.com
Sat Mar 1 14:28:37 EST 2014


Well, This is what i got 

n = int(input("enter number of o: "))

for i in range(n):
    print("O", end = '')
    for j in range(n* 2):
        print("O", end = '')
    
    print()



More information about the Python-list mailing list