# File: hello.py # Say hello to Sam and Anne # # Matt Bishop, ECS 36AMHI 289I, Winter 2019 # # This prints "hello" def h(): print("Hello,", end=" ") # here we go . . . h() print("Sam!") h() print("Anne!")