Skip to content

Instantly share code, notes, and snippets.

@FrankFonts
Created August 27, 2016 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FrankFonts/31ca50a28489b26d9084fcf9343dbded to your computer and use it in GitHub Desktop.
Save FrankFonts/31ca50a28489b26d9084fcf9343dbded to your computer and use it in GitHub Desktop.
aList = [0, 1, 2, 3]
temp = []
j = len(aList)-1
for i in range(j, -1, -1):
temp.append(aList[i])
aList = temp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment