728x90
import copy
A = [[10, 60], [50, 'Hi'], ['Hello', 5, 80]]
B = copy.deepcopy(A)
A[2][0] = 'World'
A[0][1] = 10
print('List A is : % s' % (A))
print('List B is : % s' % (B))
728x90
'Data Science > Python' 카테고리의 다른 글
[python] dataframe apply() multiprocessing (0) | 2022.09.05 |
---|---|
[python] 그래프에서 두 좌표의 거리 계산 (0) | 2022.09.05 |
[python] Accelerate Requests Using asyncio (0) | 2022.09.01 |
[pandas] Adding days to datetime dataframe column (0) | 2022.09.01 |
[pandas]Dataframe Pivoting code. (0) | 2022.04.22 |
최근댓글