-
max(it)는 인수로 반복 가능한(iterable) 자료형을 입력받아 그 최대값을 돌려주는 함수다. min(it)는 최소값.
>>> min([1,22,333]) 1 >>> min("string value") ' ' >>> min("stringvalue") 'a'
'Python' 카테고리의 다른 글
Python - reduce 함수 (0) 2020.09.06 Python - sorted 함수 (0) 2020.09.05 Python - round 함수 (0) 2020.09.05 Python - range 함수 (0) 2020.09.05 Python - map 클래스 함수 (0) 2020.09.05 Python - list() 클래스 함수 (0) 2020.09.05 Python - id() 함수 (0) 2020.09.05 Python - filter 클래스 함수, 검색 (0) 2020.09.05