python include() code example
Example 1: python max()
i = max(2, 4, 6, 3)
print(i)
# Result will be 6 because it is the highest number
Example 2: python strip()
a = " smurf "
a = a.strip()
#remove space at begining and end of string
print(a)
#smurf