Function Python Tutorial

def foo(who):     
  print 'Hello', who
foo()             
foo('World!')     
foo('Mr.', 'World!')