Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 18:16
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 parzibyte/64f031d626a09afd205ec05903583c34 to your computer and use it in GitHub Desktop.
Save parzibyte/64f031d626a09afd205ec05903583c34 to your computer and use it in GitHub Desktop.
peliculas = ['Volver al futuro', 'Pulp Fiction', 'Ready Player One']
print("Antes de agregar un elemento, la lista es:")
print(peliculas)
peliculas.append('Animales fantásticos y dónde encontrarlos')
print("Después de agregar un elemento, la lista es:")
print(peliculas)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment