码迷,mamicode.com
首页 > 编程语言 > 详细

python学习之day4,函数

时间:2016-11-01 13:35:40      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:print   语句   函数   默认参数   程序   扩展   pre   维护   nbsp   

1.函数的定义:  函数是指将一组语句的集合通过一个名字(函数名)封装起来,要想执行这个函数,只需调用其函数名即可

   特性:

  1. 减少重复代码
  2. 使程序变的可扩展
  3. 使程序变得易维护

  语法定义:

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)

 

python学习之day4,函数

标签:print   语句   函数   默认参数   程序   扩展   pre   维护   nbsp   

原文地址:http://www.cnblogs.com/liruixin/p/6018854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!