“Python List Copia profunda” Código de respuesta

Python List Copia profunda

from copy import deepcopy
 
if __name__ == '__main__':
 
	x = [1, 2]
    y = [x, x]
 
	# create a copy of list y
    clone = deepcopy(y)
 
    # remove the last item from the original list
    x.pop()
 
    # cloned list remains unchanged
    print(clone)  # [[1, 2], [1, 2]]
Testy Tarsier

Python List Copia profunda

import copy

list_to_copy = ['a', 2, 'foo']

new_deepcopy = copy.deepcopy(list_to_copy)
Defiant Dove

Respuestas similares a “Python List Copia profunda”

Preguntas similares a “Python List Copia profunda”

Más respuestas relacionadas con “Python List Copia profunda” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código