λ³μμ κ°μ μλ£νμ νμΈνλ λ°©λ²
type()
ν¨μλ λ³μλ κ°μ μλ£νμ νμΈν λ μ¬μ©ν©λλ€.
type() ν¨μ μ¬μ©λ²
type()
ν¨μλ κ΄νΈ μμ λ³μλ κ°μ λ£κ³ νΈμΆν΄ ν΄λΉ λ°μ΄ν°μ μλ£νμ λ°νν©λλ€.
type() ν¨μ μ¬μ©λ²
number = 10 # λ³μ numberμ μ μ 10 ν λΉ print(type(number)) # <class 'int'> : μ μν(Integer) μλ£ν text = "νμ΄μ¬ νλ‘κ·Έλλ°" # λ³μ textμ λ¬Έμμ΄ ν λΉ print(type(text)) # <class 'str'> : λ¬Έμμ΄(String) μλ£ν
μλ£ν νμΈνκΈ°
type()
ν¨μλ νμ΄μ¬μ λͺ¨λ κΈ°λ³Έ μλ£ν λ° μ¬μ©μ μ μ μλ£νμ νμ
μ νμΈν μ μμ΅λλ€.
λ€μν μλ£ν νμΈ
is_active = True print(type(is_active)) # <class 'bool'> : λΆλ¦°ν(Boolean) μλ£ν my_list = [1, 2, 3] print(type(my_list)) # <class 'list'> : 리μ€νΈ(List) μλ£ν my_dict = {"key": "value"} print(type(my_dict)) # <class 'dict'> : λμ λ리(Dictionary) μλ£ν
Mission
0 / 1
λ€μ μ€ type()
ν¨μμ λν μ€λͺ
μΌλ‘ μ³μ κ²μ 무μμΈκ°μ?
λ³μλ κ°μ μΆλ ₯νλ ν¨μμ
λλ€.
ν¨μλ λ³μλ κ°μ μμ νλ ν¨μμ
λλ€.
ν¨μλ λ³μλ κ°μ μλ£νμ νμΈνλ ν¨μμ
λλ€.
`ν¨μλ λ³μλ κ°μ μ λ ¬νλ ν¨μμ
λλ€.
Guidelines
AI Tutor
Publish
Design
Upload
Notes
Favorites
Help
Code Editor
Run
Generate
Execution Result