龙空技术网

python中的def是什么意思

科技i关注 1560

前言:

此时姐妹们对“python中def的作用”可能比较关切,我们都想要剖析一些“python中def的作用”的相关内容。那么小编同时在网络上收集了一些关于“python中def的作用””的相关内容,希望同学们能喜欢,兄弟们一起来了解一下吧!

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

如:

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

# 例:简单的函数使用

# 定义函数

def hello():

print 'hello python!'

# 调用函数

hello()

>>> hello python!

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

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

更多技巧请《转发 + 关注》哦!

标签: #python中def的作用 #python def函数作用