函数:
py内置;list print len input
自定义函数;
def定义函数
例:def test ():
print(“”“”)#定义函数
test()#运行函数
函数用来执行相同的代码
项目越大函数使用次数越多
函数名
函数:
py内置;list print len input
自定义函数;
def定义函数
例:def test ():
print(“”“”)#定义函数
test()#运行函数
函数用来执行相同的代码
项目越大函数使用次数越多
函数名
函数类型:
1. 内置函数
2. 自定义函数
方法:
def methodName():
Methodbody
讲解:
def 是定义一个函数(注意加:)
methodname是方法名,自己定义的
methodbody是方法体,前面有缩进,方法体可以包含多行语句
自定义函数的目的:方便调用多次使用的代码