आउटपुट क्या है
What is the output
>>>max("what are you")
A)
B)
C)
D)
Explanation:
The max()
function returns the largest element in an iterable based on its lexicographical order (alphabetical order).
For the string "what are you"
, the largest character (based on ASCII values) is 'y'
.
So, the output will be:
Answer: (D) y