# File: hello1.py # Use a function to print "hello and a user name" # # Matt Bishop, COSMOS 2012, Cluster 4 # # # function to print hello # def prefix(): print("hello", end=' ') # # the main program # prefix(); print("Sam!") prefix(); print("Anne!")