Guidelines

λ³€μˆ˜μ™€ κ°’μ˜ μžλ£Œν˜•μ„ ν™•μΈν•˜λŠ” 방법

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