본문 바로가기
파이썬

파이썬 Is a Python list guaranteed to have its elements stay in the order they are inserted in?

by º기록 2021. 2. 1.
반응형

다음 Python 코드가있는 경우

>>> x = []
>>> x = x + [1]
>>> x = x + [2]
>>> x = x + [3]
>>> x
[1, 2, 3]

x 가 항상 [1,2,3] 이되도록 보장됩니까, 아니면 중간 요소의 다른 순서가 가능합니까?

 

해결 방법

 

예, 파이썬 목록의 요소 순서는 영구적입니다.

 

참조 페이지 https://stackoverflow.com/questions/13694034

 

 

반응형

댓글