# File: hello.py # Say hello to Sam and Anne # # Matt Bishop, MHI 289I, Fall 2021 # # This prints "hello" def h(): print("Hello,", end=" ") # here we go . . . h() print("Sam!") h() print("Anne!")