I'd like to list the items in a tuple in Python starting with the back and go to front. Similar to:
foo_t = tuple(int(f) for f in foo)
print foo, foo_t[len(foo_t)-1] ...
I believe this should be possible without Try ...-4, except ...-3. Thoughts? suggestions?