Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created November 14, 2021 11:58
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 fatosmorina/96975f24286ba8760ee73d1f20b4ce71 to your computer and use it in GitHub Desktop.
Save fatosmorina/96975f24286ba8760ee73d1f20b4ce71 to your computer and use it in GitHub Desktop.
my_list = [1, 2, 3, 4, 5, 6, 7, 8]
my_list.pop() # Remove the last element
del my_list[0] # Remove the first element
print(my_list) # [2, 3, 4, 5, 6, 7]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment