데이터 타입별 선언은 다음과 같다.
#데이터 타입 선언
v_str1 = "Hello" #String
v_bool = True #Boolean
v_str2 = "World" #String
v_float = 10.3 #Float
v_int = 7 #Int
v_dict = { #Dictinaries
"name" : "hong",
"age" : 21
}
v_list = [ 3,7, 9] #List
v_tuple = 3,5,7 #Tuple
v_set = { 7,8,9} #Set
데이터 타입 확인은 type() 함수를 이용하여 확인 할 수 있다.
print(type(v_str1))
print(type(v_bool))
print(type(v_str2))
print(type(v_float))
print(type(v_int))
print(type(v_dict))
print(type(v_tuple))
print(type(v_list))
print(type(v_set))
04. Python 문자열 메소드 및 함수 (0) | 2021.05.07 |
---|---|
03. Python 문자형 및 연산자 (0) | 2021.05.07 |
01. Print 함수 (0) | 2021.05.07 |
Python 개발환경 구축 (0) | 2021.05.07 |
댓글 영역