Title Dec 5, 2022 • 1 min read numbers = [13, 27, 26, 643, 65, 432, 3, 85] possibleMin = numbers[0] for x in numbers: if x < possibleMin: possibleMin = x print(possibleMin) 3