函数
函数就是一块语句,这块语句有个名字,你可以在需要时反复地使用这块语句。它有可能需要输入,有可能会返回输出。
在线运行演示代码
参考教程
def sayHello(): print('hello world!') sayHello() sayHello() sayHello()