>>> L = [2, 3, 4]
>>> M = [3, 4, 5]
>>> print(max(L) > max(M))
>>> M = [3, 4, 5]
>>> print(max(L) > max(M))
Anonymous Quiz
16%
True
69%
False
12%
Error
3%
None of above
x = abs(-7.25)
print(x) What will be the output?
print(x) What will be the output?
Anonymous Quiz
15%
-7.25
56%
7.25
21%
7
8%
None of above
friends, please share our channel and website with your friends so that they can also get benefited
What will be the output of the following Python Code? func = lambda x: return x
print(func(2))
print(func(2))
Anonymous Quiz
38%
SyntaxError
8%
x
19%
2.0
33%
2
2%
0