函数定义:
In [78]: def printme(str): ....: print str ....: return ....:
调用:
In [79]: printme('This is Jian')This is Jian
In [80]: