Skip to content

Instantly share code, notes, and snippets.

@alexfrieden
Created October 6, 2014 16:35
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 alexfrieden/ec0ca2cfc54cb2b78785 to your computer and use it in GitHub Desktop.
Save alexfrieden/ec0ca2cfc54cb2b78785 to your computer and use it in GitHub Desktop.
mylist = []
mylist.append("alex")
mylist.append("adam")
mylist
#['alex', 'adam']
mylist.remove('alex')
mylist
#['adam']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment