Python | 2.1 자료형_숫자형

sojung·2021년 9월 13일
0

Python

목록 보기
2/4
post-thumbnail

숫자형

# hello.py

a=1
 
print(a) # 1
a=1

print(type(a)) # <class 'int'> 정수형
a=1.24

print(type(a)) # <class 'float'> 실수형
a=3
b=4

print(a+b) # 7

a * b(곱하기)
a / b(나머지)
a // b(몫)
a % b(나머지)
a ** b(제곱)

profile
걸음마코더

0개의 댓글