Mega Code Archive

 
Categories / Python Tutorial / Statement
 

With the def statement

def hello(name):      return 'Hello, ' + name + '!'  print hello('world') print hello('Gumby')