투케이2K

91. (python/파이썬) [Mac Os] : [문법] : type 사용해 선언 된 변수 데이터 타입 확인 본문

Python

91. (python/파이썬) [Mac Os] : [문법] : type 사용해 선언 된 변수 데이터 타입 확인

투케이2K 2024. 5. 7. 19:28

[개발 환경 설정]

개발 툴 : VsCode

개발 언어 : python

 

[소스 코드]

# --------------------------------------------------------------
# [import]
# --------------------------------------------------------------
# --------------------------------------------------------------



# --------------------------------------------------------------
# [요약 설명]
# --------------------------------------------------------------
# 1. type()은 파이썬에서 데이터 타입을 확인할 수 있는 함수입니다
# --------------------------------------------------------------



# --------------------------------------------------------------
# [class start]
# --------------------------------------------------------------



# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------


# [초기 변수 선언 실시]
a = "twok"
b = 30
c = True
d = 1.5
e = [ 1, 2, 3 ]
f = ( 1, 2, 3 )


# [type 사용해 데이터 타입 확인 수행]
a_type = type( a )
b_type = type( b )
c_type = type( c )
d_type = type( d )
e_type = type( e )
f_type = type( f )


# [로그 출력 수행]
print("")
print("----------------------------------------")
print("a_type :: ", a_type)
print("----------------------------------------")
print("b_type :: ", b_type)
print("----------------------------------------")
print("c_type :: ", c_type)
print("----------------------------------------")
print("d_type :: ", d_type)
print("----------------------------------------")
print("e_type :: ", e_type)
print("----------------------------------------")
print("f_type :: ", f_type)
print("----------------------------------------")
print("")


# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------



# --------------------------------------------------------------
# [class end]
# --------------------------------------------------------------
 

[결과 출력]

 

 

반응형
Comments