SMALL
리μ€νΈ, νν, μΈνΈ νμ μ λ³ννκΈ° μ μΈ κ°μ§ λ°μ΄ν° νμ μ λν΄ λͺ¨λ₯΄λ λΆλΆμ΄ μλ€λ©΄ νλ² λ 체ν¬νκ³ μ€μ
2022.02.28 - [IT μ΄λͺ¨μ λͺ¨/Python] - [Python] μλ£ν_리μ€νΈ κ°λ λ° ν¨μ νμ©λ²
2022.03.01 - [IT μ΄λͺ¨μ λͺ¨/Python] - [Python] μλ£ν_νν κ°λ λ° ν¨μ νμ©λ²
2022.03.01 - [IT μ΄λͺ¨μ λͺ¨/Python] - [Python] μλ£ν_μΈνΈ κ°λ λ° ν¨μ νμ©λ²
λ³νλ νμ μ΄ μ 보μ΄λλ‘ κ°μ΄ μΆλ ₯ν΄λ³΄μλ€.
# λμ
λ리 μμ±
# νμ¬ λ°μ΄ν° νμ
: set
menu = {'컀νΌ', 'μ°μ ', 'μ£Όμ€'}
print(menu, type(menu)) # {'컀νΌ', 'μ°μ ', 'μ£Όμ€'} <class 'set'>
# listλ‘ λ³ν
menu = list(menu)
print(menu, type(menu)) # ['컀νΌ', 'μ°μ ', 'μ£Όμ€'] <class 'list'>
# tupleλ‘ λ³ν
menu = tuple(menu)
print(menu, type(menu)) # ('컀νΌ', 'μ°μ ', 'μ£Όμ€') <class 'tuple'>
# λμ
λ리 μμ±
# νμ¬ λ°μ΄ν° νμ
: list
color = ['λΉ¨κ°', 'λ
Έλ', 'μ£Όν©']
print(color, type(color)) # ['λΉ¨κ°', 'λ
Έλ', 'μ£Όν©'] <class 'list'>
# tupleλ‘ λ³ν
color2 = tuple(color)
print(color2, type(color2)) # ('λΉ¨κ°', 'λ
Έλ', 'μ£Όν©') <class 'tuple'>
# setλ‘ λ³ν
color3 = set(color)
print(color3, type(color3)) # {'μ£Όν©', 'λΉ¨κ°', 'λ
Έλ'} <class 'set'>
# λ€μ listλ‘ λ³ν
color2 = list(color2)
print(color2, type(color2)) # ['λΉ¨κ°', 'λ
Έλ', 'μ£Όν©'] <class 'list'>
SMALL
'IT π» > Python' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[Python] μ¬μ΄ μμ λ‘ μμ보λ μμ±μ, ν΄λμ€, κ°μ²΄μ μΈμ€ν΄μ€ (0) | 2022.04.05 |
---|---|
[Python] μλ£ν_λμ λ리 κ°λ λ° ν¨μ νμ©λ² (0) | 2022.03.01 |
[Python] μλ£ν_μΈνΈ κ°λ λ° ν¨μ νμ©λ² (0) | 2022.03.01 |
[Python] μλ£ν_νν κ°λ λ° ν¨μ νμ©λ² (0) | 2022.03.01 |
[Python] μλ£ν_리μ€νΈ κ°λ λ° ν¨μ νμ©λ² (0) | 2022.02.28 |