본문 바로가기
Python/Python Examples

[Python Examples] type(): 데이터 타입 출력해서 나타내기

by Henry Cho 2022. 11. 1.
728x90

 type(): 데이터 타입 출력해서 나타내기

포스트 난이도: HOO_Intern


# Example Codes

 

var =10
print(type(var))

var_float =10.52
print(type(var_float))

introduce = "Hello I'm HOO."
print(type(introduce))

alphabet = "A"
print(type(alphabet))

<class 'int'>
<class 'float'>
<class 'str'>
<class 'str'>

 

728x90

댓글