def function1(arg): print(arg) def function2(argument): print(argument) argument = argument + ". HI!" function1(argument) function2("Hello World")