Find Smallest Number in Array using Python

min function

numbers = [10, 3, 17, 50, 15]
minNumber = min(numbers)

print(minNumber)

Leave a Comment

Cancel reply

Your email address will not be published.