python中的def语句是什么意思

python中的def语句是define的意思,用来定义函数。用法为:“def 函数名(参数1, 参数2, ……, 参数N): 执行语句”。

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

如:

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

# 例:简单的函数使用

# 定义函数
def hello():
    print 'hello python!'
     
# 调用函数       
hello()

推荐课程:Python基础视频教程(前端基础)

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python中的def语句是什么意思