"Kent Johnson" <kent37 at tds.net> wrote > You can do better without using range; you can directly iterate the > letters in reverse: > > for c in word[::-1]: > print c, Or even just print word[::-1] :-) Alan G.