NDSUstudent
2009-04-08 21:02:16 UTC
a b c d e f
g h i j k
l m n o
p q r
s t
u
we have been given a hint to use ord(ch) and chr(i). So far i have this :
def main():
letter = raw_input("Enter a letter: ")
for i in range(6):
for j in range(i,6):
print letter," ",
main()
can anyone help me?