Created
May 4, 2016 00:24
-
-
Save psicobyte/ca8cfaceebc209ba52cc86db3786f1a1 to your computer and use it in GitHub Desktop.
Copiando listas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# Copiando listas | |
# creamos una lista: | |
primera_lista = [1, 2, 3] | |
# la copiamos en otra: | |
segunda_lista = list(primera_lista) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment