当前位置:Gxlcms > Python > python中的def是什么意思

python中的def是什么意思

时间:2021-07-01 10:21:17 帮助过:103人阅读

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

如:

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

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

>>> hello python!

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

以上就是python中的def是什么意思的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行