코드
a=33
b=3
plus=a+b
minus=a-b
multiply=a*b
divide=a/b
remainder=a%b
power=a**b
print('더하기 :' + plus)
print('빼기 :' + minus)
print('곱하기 :' + multiply)
print('나누기 :' + divide)
print('나머지 :' + remainder)
print('제곱 :' + power)
결과
더하기 : 36
빼기 : 30
곱하기 : 99
나누기 : 11.0
나머지 : 0
제곱 : 35937
'Common > Python' 카테고리의 다른 글
[Python]편집기 설치-PyCharm (0) | 2017.06.03 |
---|---|
[Python]3.6.1 설치 (0) | 2017.06.03 |
[Python]if-else (0) | 2017.06.02 |
[Python]if문 (0) | 2017.06.02 |
[Python]주석처리 (0) | 2017.06.02 |