पायथन कोड का आउटपुट क्या है?
What is the output of Python code?
my_list = [3,1,4,1,5]
print(max (my_list)) A
1
B
5
C
3
D
4
Explanation
my_list = [3, 1, 4, 1, 5]
print(max(my_list))
अब max() function list में सबसे बड़ी value देता है:
List = [3, 1, 4, 1, 5]
Maximum value = 5
Correct Answer: B) 5