标签:其他 -- 函数参数 pytho python TE odi 命名 必须
#-*- coding:utf-8 -*- #缺省参数的定义 def test(a,b=10): print(a+b) #缺省参数必须在参数列表的最后定义,不可以定义在普通参数前面 # def test(a,b=10,c) ---这种定义方式是错误的 test(2) def test2(a, b =10, c=5): print(a+b+c) #命名参数的使用 test2(3,c=3) #指定给参数c赋值,这里"c=3" c必须是形参名,不可以写其他变量名
标签:其他 -- 函数参数 pytho python TE odi 命名 必须
原文地址:https://www.cnblogs.com/zhanggaofeng/p/9248867.html