Scott wrote: > So how on earth would be the best way to: Write a function that takes a > string as an argument and outputs the letters backward, one per line.
Homework?
Anyway, what about:
for c in string[::-1]:
print c
Stefan
--
http://mail.python.org/mailman/listinfo/python-list
