Returns in Python are written the same as in Java, just without the semicolon. For example:
def double(number): return 2 * number
def double(number):
return 2 * number
Fill in the placeholders so that the actual outputs match the expected outputs.