# File: hello0.py # Use a function to print "hello" # # Matt Bishop, ECS 10, Winter 2012 # # # function to print hello # def prefix(): print("hello", end=' ') # # the main program # prefix(); print("Sam!") prefix(); print("Anne!")