gow to get max num using def in python 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