标签:color 建议 定义 匿名 close display gif play global
1 def stu_register(name,age,course,country="CN"):
#代码中country即为默认参数,当调用函数时,如果country不指定的话,则默认为“CN”,指定了的话,为指定的数
#在定义函数时,默认参数要放在最后面
1 def stu_register(name, age, course=‘PY‘ ,country=‘CN‘): 2 3 #调用 4 stu_register("王山炮",course=‘PY‘, age=22,country=‘JP‘ ) 5 6 #不可以用下面这两条 7 stu_register("王山炮",course=‘PY‘,22,country=‘JP‘ ) 8 stu_register("王山炮",22,age=25,country=‘JP‘ )
1 #方式一: 2 send_alert(‘报警‘,‘z‘,‘w‘,‘q‘,‘a‘) 3 #方式二:必须要带* 4 send_alert(‘报警‘,*(‘z‘,‘w‘,‘q‘,‘a‘)) 5 send_alert(‘报警‘,*[‘z‘,‘w‘,‘q‘,‘a‘])
1 calc = lambda x,y:x**y 2 print(calc(2,5))
1 def func(n): 2 if n == 1: 3 return 1 4 return n*func(n-1) 5 print(func(4))
标签:color 建议 定义 匿名 close display gif play global
原文地址:http://www.cnblogs.com/GraceZ/p/7955887.html