Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 31, 2020 22:27
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/0a91e281d3d949b5ab1eaf4c666f4e28 to your computer and use it in GitHub Desktop.
Save parzibyte/0a91e281d3d949b5ab1eaf4c666f4e28 to your computer and use it in GitHub Desktop.
lista = [1, 2, 3]
otra_lista = lista[:]
print("lista:")
print(lista)
print("otra_lista:")
print(otra_lista)
# Modificar a lista
print("Modificando...")
otra_lista[0] = 4
# Y al imprimir, no debería haber modificado a "lista"
print("lista:")
print(lista)
print("otra_lista:")
print(otra_lista)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment