The same rules of composition that apply to built-in functions also apply to programmerdefined
functions, so we can use any kind of expression as an argument for print_twice:
print(bruce)
This function assigns the argument to a parameter named bruce. When the function is
called, it prints the value of the parameter (whatever it is) twice.
This function works with any value that can be printed