function1.py 168 B

12345678
  1. def say_hello():
  2. # block belonging to the function
  3. print 'hello world'
  4. # End of function
  5. say_hello() # call the function
  6. say_hello() # call the function again