1.函数的定义: 函数是指将一组语句的集合通过一个名字(函数名)封装起来,要想执行这个函数,只需调用其函数名即可
特性:
- 减少重复代码
- 使程序变的可扩展
- 使程序变得易维护
语法定义:
1 def test(): 2 print "this is test" 3 4 test()
默认参数
1 def info(name,age,country="CN"): #默认参数 2 print ‘‘‘name is %s 3 age is %d 4 country is %s‘‘‘%(name,age,country) 5 6 info("liruixin",22)
时间: 2024-10-06 01:19:17