python中def的用法(python中的def是什么意思)

导读 define的意思,用来定义函数。如:def函数名(参数1,参数2,……,参数N):执行语句 例:简单的函数使用 定义函数defhello():printhellopy

define的意思,用来定义函数。

如:def函数名(参数1,参数2,……,参数N):执行语句#例:简单的函数使用#定义函数defhello():print'hellopython!'#调用函数hello()hellopython!。