인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

boungjoo5335's profile image
boungjoo5335

asked

Getting Started with Programming: Introduction to Python (Inflearn Original)

Tuple (4-1): Tuples are almost similar to lists.

튜플 리스틑로 형변화 문의

Written on

·

154

0

튜플을 리스트로 형 변환을 하려고 하는데 변환이 안되네요..

어느 부부이 이상한지  문의 드립니다

 

코딩

tt = ('fooo', 'barr', 'bazz', 'quzz')

print(tt)

print(type(tt))

list(tt)

print(type(tt))

 

결과

('fooo', 'barr', 'bazz', 'quzz')
<class 'tuple'>
<class 'tuple'>

 

하는 문화를 만들어가요.
- 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.
python

Answer 1

0

niceman님의 프로필 이미지
niceman
Instructor

temp = list(tt)

변수에 할당 수 출력하세요~

boungjoo5335's profile image
boungjoo5335

asked

Ask a question