타입선언
문자형
str = "hello"
str2 = 'hello python'
str3 = "12345 and easy coding" 숫자형
int1 = 1
int2 = -2
int3 = 333
float1 = 2.0
float2 = 4.1
float3 = 3.14불린형
Last updated
str = "hello"
str2 = 'hello python'
str3 = "12345 and easy coding" int1 = 1
int2 = -2
int3 = 333
float1 = 2.0
float2 = 4.1
float3 = 3.14Last updated
boolean1 = True # True
boolean2 = False # False
boolean3 = 1 < 2 # True
boolean4 = 1 == 2 # False