Computer Science, asked by s1044mnivedha22650, 17 days ago

Write a python program to display the maximum value from the list of

Numbers.​

Answers

Answered by samarthkrv
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