0w0

[BASIC] 파이썬 list, tuple, set 형변환 type() 본문

Coding/Python

[BASIC] 파이썬 list, tuple, set 형변환 type()

0w0 2020. 11. 21. 03:32
728x90
반응형
#list, tuple, set 형변환 type() 

#type() : 자료형 확인

Dungeon={"goblin","skeleton","orc","zombie"} #set
print(type(Dungeon), Dungeon)


print("\n1. set->list")
Dungeon=list(Dungeon)
print(type(Dungeon), Dungeon) #list

print("\n2. list->tuple")
Dungeon=tuple(Dungeon)
print(type(Dungeon), Dungeon) #tuple

print("\n3. tuple->set")
Dungeon=set(Dungeon)
print(type(Dungeon), Dungeon) #set


#출력형태
C:\Users\hotsk\Anaconda3\envs\Repeat\python.exe C:/Workspace/repeat/helloworld.py
<class 'set'> {'skeleton', 'goblin', 'zombie', 'orc'}

1. set->list
<class 'list'> ['skeleton', 'goblin', 'zombie', 'orc']

2. list->tuple
<class 'tuple'> ('skeleton', 'goblin', 'zombie', 'orc')

3. tuple->set
<class 'set'> {'skeleton', 'goblin', 'zombie', 'orc'}

Process finished with exit code 0
728x90
반응형

'Coding > Python' 카테고리의 다른 글

[BASIC] 파이썬 for문  (0) 2020.11.24
[BASIC] 파이썬 if문  (0) 2020.11.24
[BASIC] 파이썬 세트 {} (set)  (0) 2020.11.21
[BASIC] 파이썬 튜플 () (Tuple)  (0) 2020.11.21
[BASIC] 파이썬 사전 {key:value} (Dictionary)  (0) 2020.11.19
Comments