python function to return the 5 highest values code example
Example: python max()
i = max(2, 4, 6, 3)
print(i)
# Result will be 6 because it is the highest number
i = max(2, 4, 6, 3)
print(i)
# Result will be 6 because it is the highest number