A function can have a return value: you call the function and it returns something back to where it was called.
A function returns None by default in Python.
You're now also printing the return value of output1 and output2.
You can read more about this in this section of the Python language tutorial.