greeting = "Hello" def welcome(): print(greeting + ", world") welcome() # Hello, world
Click Run to execute this code.