1.  
  2. def func1():
  3. print 'hello'
  4. func2()
  5.  
  6. def func2():
  7. print 'goobye'
  8.  
  9. func1()