# 변수
'''
여러줄 주석
또는 docstring (함수의 정의)
한따옴표 또는 쌍따옴표 사용가능
'''
"""
VARIABLE RULES:
- 변수 이름들은 case sensitive (name and NAME 대소문자가 다르면 다른 변수)
- 문자 또는 _(언더바)로 시작
- 숫자는 중간이나 끝에 포함가능
"""
# x = 1 # int
# y = 2.5 # float
# name = '길동' # string
# is_cool = True # bool
# 변수 여러개 선언
x, y, name, is_cool = (1, 2.5, '길동', True)
print(x, y, name, is_cool)
# 기본 계산
a = x + y
# 형변환(casting)
x = str(x)
y = int(y)
z = float(y)
# 타입 체크
print(type(x))
print(type(y))
print(type(z))
print(y)
print(z)
https://blog.naver.com/drv98/222067578941