변수

jb kim·2021년 8월 31일
0

Python

목록 보기
2/13

변수 선언 및 출력

# 변수

'''
여러줄 주석
또는 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

https://blog.naver.com/drv98/222067688805

https://blog.naver.com/drv98/222067775097

profile
픽서

0개의 댓글