Define a function in Python
def hello (what): text = "Hello, " + what + "!" print text hello ("World")