#계산기
def plus(a=0,b=0):
print(a+b)
def multiply(a=0,b=0):
print(a * b)
def minus(a=0,b=0):
print(a-b)
def divide(a=0,b=1):
print(a/b)
def power(a=0,b=0):
print(a**b)
plus(1,2)
multiply(1,2)
minus(1,2)
divide(1)
power(5)
default parms를 이용해서
나누기를 할 때 분모에 어떠한 값이 입력되지 않았다면 1이 자동으로 입력되게끔 해뒀다.
[Python] while 문, if elif else 문 (0) | 2024.01.15 |
---|---|
[Python] return (1) | 2024.01.15 |
[Python] default Parameter (디폴트 파라미터) (1) | 2024.01.15 |
[python] 함수 (0) | 2024.01.12 |
[Python] 딕셔너리 (0) | 2022.08.09 |