So I have this list and variables:
nums = [14, 8, 9, 16, 3, 11, 5] big = nums[0] spot = 0
I\'m confused on how to actually do it. Please
Why not simply using the built-in max() function:
>>> m = max(nums)
By the way, some answers to similar questions might be useful: