Skip to content

Instantly share code, notes, and snippets.

@hexgnu
Created November 12, 2014 18:06
Show Gist options
  • Save hexgnu/6b7d850ef106638c9b84 to your computer and use it in GitHub Desktop.
Save hexgnu/6b7d850ef106638c9b84 to your computer and use it in GitHub Desktop.
def reverse_print_list(list):
for i in range(len(list) - 1, -1, -1):
print list[i]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment