listing10-4.py 111 B

12345678
  1. # hello4.py
  2. def hello():
  3. print("Hello, world!")
  4. def test():
  5. hello()
  6. if __name__ == '__main__': test()