반응형
# 자료구조의 변경
# 커피숍
menu = {"커피", "우유", "주스"} # 집합으로 선언
print(menu, type(menu))
menu = list(menu) # 타입을 리스트로 변환
print(menu, type(menu)) # 결과창보면 리스트는 대괄호로 나타냄
menu = tuple(menu)
print(menu, type(menu)) # 결과창 보면 튜플은 소괄호로 나타냄
menu = set(menu)
print(menu, type(menu)) # 결과창 보면 세트는 중괄호로 나타냄
'language > Python' 카테고리의 다른 글
[Python] 파이썬 for문 반복문 (0) | 2020.08.25 |
---|---|
[Python] 파이썬 if 문 (0) | 2020.08.24 |
[Python] 파이썬 집합 (set /intersection/remove/difference/union) (0) | 2020.08.21 |
[Python] 파이썬 사전 ( dictionary ) (0) | 2020.08.19 |
[Python] 파이썬 리스트 ( append/insert/pop/count/sort/reverse/extend/clear ) (0) | 2020.08.18 |
댓글