Skip to content

Instantly share code, notes, and snippets.

@Ra1d7
Last active March 29, 2022 15:33
Show Gist options
  • Save Ra1d7/2ebae15268868354536e04e00e4b90e0 to your computer and use it in GitHub Desktop.
Save Ra1d7/2ebae15268868354536e04e00e4b90e0 to your computer and use it in GitHub Desktop.
test
lst = range(0,100)
newlst = []
def func(lest):
global newlst
newlst.append(lest[-1])
newlst.append(lest[0])
func(lst)
print(newlst)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment