x = [4, 6, 8, 24, 12, 2]
Expected Output:
24
Hint:
Use the built-in function max() to get the largest number from a list
max()
Solution:
x = [4, 6, 8, 24, 12, 2] print(max(x))
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Hint:
Use the built-in function
max()
to get the largest number from a listSolution:
need an explanation for this answer? contact us directly to get an explanation for this answer