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

Python入门系列教程(五)函数

时间:2017-06-14 00:01:44      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:.com   分享   glob   oba   入门   img   com   int   test   

全局变量

修改全局变量

a=100
def test():
    global  a
    a=200
    print a

多个返回值

技术分享

缺省参数

def test3(a,b=1):
    print  a,b

test3(a)
test3(a,b=2)

不定长参数

技术分享

 

Python入门系列教程(五)函数

标签:.com   分享   glob   oba   入门   img   com   int   test   

原文地址:http://www.cnblogs.com/cnki/p/7003832.html

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