What does the built-in function max() do in Python?
A. Returns the largest item in an iterable
B. Converts a number to a string
C. Returns the square of a number
D. Returns the absolute value of a number
Answer: Option A
Solution (By Examveda Team)
The correct answer is Option A: Returns the largest item in an iterable.The max() function in Python is used to find the largest item in an iterable, such as a list, tuple, or set.
It takes one or more arguments and returns the largest item.
For example:
numbers = [5, 2, 8, 1, 6]
largest_number = max(numbers)
print(largest_number) # Output: 8

Join The Discussion