Python max

Python max


nums = [1, 3, 5, 7]



largest = max(nums)

print(largest) # 7

Leave a Comment