Vidyalelo
Python · Q3

Python Built

Programming · Python · question 3

Q3

What does the built-in function max() do in Python?

A.
Returns the largest item in an iterable
Answer
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

Answer: Option A
Solution:
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