Write a python program to display the maximum value from the list of
Numbers.
Answers
Answered by
0
Answer:
col = [5,4,7,8,9,6,2,1,0]
col.sort()
l = len(col)
print("The largest element is",col[l-1])
Explanation:
Similar questions