반응형
파이썬 내장함수(Built-in Function)인 tuple() 함수에 대해 알아봅니다.
class tuple(iterable) |
튜플은 함수가 아니라 실제로 튜플 및 시퀀스 유형( list, tuple, range )에 설명된 대로 불변 시퀀스 유형( immutable sequence type )입니다.
Rather than being a function, tuple is actually an immutable sequence type, as documented in Tuples and Sequence Types — list, tuple, range.
튜플은 이터러블(반복이 가능한 데이터)을 튜플로 변환해줍니다.
>>> a=[10,20,30] >>> a [10, 20, 30] >>> b=tuple(a) >>> b (10, 20, 30) >>> type(b) <class 'tuple'> >>> c=tuple('Python') >>> c ('P', 'y', 't', 'h', 'o', 'n') |
반응형
'Python' 카테고리의 다른 글
(파이썬) 카운트다운, 정해진 시간 안에 숫자 맞히기 게임 (0) | 2024.01.06 |
---|---|
(파이썬) 내장함수 zip() (0) | 2024.01.05 |
(파이썬) 내장함수 sorted() 정렬 (0) | 2024.01.04 |
(파이썬) 내장함수 slice() 슬라이스 (0) | 2024.01.04 |
(파이썬) pip install, 모듈 설치하는 방법 (0) | 2024.01.04 |