Skip to content

Instantly share code, notes, and snippets.

@psicobyte
Created May 4, 2016 00:24
Show Gist options
  • Save psicobyte/ca8cfaceebc209ba52cc86db3786f1a1 to your computer and use it in GitHub Desktop.
Save psicobyte/ca8cfaceebc209ba52cc86db3786f1a1 to your computer and use it in GitHub Desktop.
Copiando listas
#/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