def sum_all(*args):
result = 0
for i in args:
result += i
return result
print(sum_all(1, 2, 3, 4, 5))
print(sum_all(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
https://psychoria.tistory.com/530
https://wayhome25.github.io/python/2017/02/26/py-12-exception/
'+++++SW 일일 공부+++++ > SW Expert Aademy' 카테고리의 다른 글
Python 표준 모듈과 활용 (0) | 2020.01.14 |
---|---|
Python 구문오류와 예외 (0) | 2020.01.11 |
실행 관련 함수 (0) | 2020.01.11 |
Python 변환함수 (0) | 2020.01.11 |
Python 수칙연산 함수 (0) | 2020.01.08 |