PHP前端开发

python中的def是什么意思

百变鹏仔 2个月前 (01-22) #Python
文章标签 python

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

如:

def 函数名(参数1, 参数2, ……, 参数N):    执行语句

   

立即学习“Python免费学习笔记(深入)”;

# 例:简单的函数使用# 定义函数def hello():    print 'hello python!'     # 调用函数        hello()

   

立即学习“Python免费学习笔记(深入)”;

>>> hello python!

相关教程推荐:Python视频教程