LARGEST NUMBER IN A LIST

list = [22, 44, 56, 77, 89, 43, 740]
list.sort()
print("the smallest number in a list is:", list[0])

Comments