Function Python Tutorial

def echo(message):                  
    print message 
x = echo                            
x('Hello world!')