Mega Code Archive

 
Categories / Python Tutorial / Function
 

Def Statement

def helloSomeone(who):   'returns a salutory string customized with the input'   return "Hello " + str(who)