Report Bug
Qus :

What will be the output of the following Python code?

print(max("what are you"))

Qus

निम्नलिखित Python कोड का आउटपुट क्या होगा?

print(max("what are you"))


A. error
B. u
C. t
D. y


Solution
D. y



Explanation
Max returns the character with the highest ascii value.



Report Bug