-
max, min 사용해 if 문 없이 최대, 최소값 찾기Python 2021. 2. 4. 15:20
print(max(8, 12, 8, 4, 6, 4, 100, 6, 9, 1000, 59)) print(min(8, 12, 8, 4, 6, 4, 100, 6, 9, 1000, 59))
1000 4
'Python' 카테고리의 다른 글
14. 파일 (0) 2021.02.05 13. 예외 처리 (0) 2021.01.30 12. 표준 모듈 (0) 2021.01.30 [error] AttributeError: partially initialized module 'statistics' has no attribute 'mean' (most likely due to a circular import) (0) 2021.01.29 Python의 효율적인 반복에 유용한 itertools 함수 (0) 2021.01.28