Python
Python Chapter 5
Write the definition of a function absoluteValue that recieves a parameter containing an integer value and returns the absolute value of that parameter.
Write the definition of a function absoluteValue that recieves a parameter containing an integer value and returns the absolute value of that parameter.
Write the definition of a function absoluteValue that recieves a parameter containing an integer value and returns the absolute value of that parameter.
def absoluteValue(int):
return abs(int)
Learn More :