"Christian Witts" <cwi...@compuscan.co.za> wrote

What about range(0, -n, -1) ?

That would need to have a starting value of -1 and an end value of -(len(phrase)+1). Of else you can start at length - 1, end at zero and a step value of -1.

Another option, using "normal" range values but negative indexing is
for i in range(1,len(word)+1):
     print word[-i],

Alan G

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to