# File: hello.py # Say hello to Sam and Anne # # Matt Bishop, ECS 10, Spring 2014 # # This prints "hello" def h(): print("Hello,", end=" ") # here we go . . . h() print("Sam!") h() print("Anne!")