Find the largest number in a set
maximum = max(-5, 10, 600, 53, 55554.43) print maximum
Find the smallest number in a set
minimum = min(3, 5, 6) print minimum
Find the absolute value of a number
absolute = abs(-23) print absolute
Find the type of the variable passed
print type(5) print type(5.3) print type("Meow")