Answers for "how to find the smallest number in a list python"

2

python find smallest value in list

numbers = [1, 5, 2, 10, 9, 3, 5]
print(min(numbers))
Posted by: Guest on November-17-2021
0

find the largest and smallest numbers in a list

thislist = [677,8765,8765,876,470,754,6784,56789,7658,]
thislist.sort()
print ("The smallest number is: " + str(thislist[0]))
print ("The largest number is: " + str(thislist[-1]))
Posted by: Guest on June-03-2021
2

python find smallest value in list

stuff = [37, 7, 19, 29, 5, 13, 31, 17, 23, 11, 3, 2]
print(min(stuff))
# output = 2
Posted by: Guest on December-22-2020

Code answers related to "how to find the smallest number in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language