标签:print 语句 函数 默认参数 程序 扩展 pre 维护 nbsp
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)
标签:print 语句 函数 默认参数 程序 扩展 pre 维护 nbsp
原文地址:http://www.cnblogs.com/liruixin/p/6018854.html