Python min

Python min


nums = [1, 3, 5, 7]



smallest = min(nums)

print(smallest) # 1

Leave a Comment