function in python

What is Def  ?

The keyword def introduces a function definition. It must be followed by the function name and the parenthesized list of formal parameters.

...............................................................
Example....



def  hello(teacher):
print teacher,"is a good teacher"