Checkpoint 8.15.1.
Write a function called
int_return
that takes an integer as input and returns the same integer.int_return
that takes an integer as input and returns the same integer.add
that takes any number as its input and returns that sum with 2 added.change
that takes any string, adds “Nice to meet you!” to the end of the argument given, and returns that new string.divide
that takes in any number and returns that same number divided by 2. The second function called sum
should take any number, divide it by 2, and add 6. It should return this new number. You should call the divide
function within the sum
function. Do not worry about decimals.