본문 바로가기

컴퓨터/Python

Python max() | 파이썬 최대값

# Finding the maximum value in a list
numbers = [1, 2, 3, 4, 5]
print(max(numbers))
# Output: 5

# Finding the maximum value of two arguments
print(max(3, 7))
# Output: 7

# Finding the maximum value of three or more arguments
print(max(1, 5, 7, 2))
# Output: 7

# Finding the maximum value in a string
letters = "hello"
print(max(letters))
# Output: 'o'

'컴퓨터 > Python' 카테고리의 다른 글

Python Collections | 파이썬 콜렉션  (0) 2023.02.04
Python tuple | 파이썬 튜플  (0) 2023.02.01
Python dictionary | 파이썬 객체  (0) 2023.02.01
Python Class | 파이썬 클래스  (0) 2023.02.01
Python comment | 파이썬 주석  (0) 2023.02.01