当前位置:首页 > 百科知识 > python def是什么意思

python def是什么意思

2023-02-28 12:58:07

python def是什么意思

defi来自ne的意思,用来定义函数。

如:

def 函数名(参数1, 参数2, ……, 参数N):

    执360问答行语句

# 例:简单的函数使用

# 定义函数

def hello():

    print 'hello python!'

    

# 调用函数        

hello()

>>> hello python!

标签:python

热门文章