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

python中非关键字可变长参数和关键字变量参数的区别

时间:2016-09-17 16:10:02      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

#非关键字可变长参数

def add(*arg):
    return type(arg)

print add()

 

#打印结果

<type ‘tuple‘>

 

#关键字变量参数

def abd(**args):
    return type(args)

print abd()

 

#打印结果

<type ‘dict‘>

 

由此,非关键字可变长参数是元组类型,关键字变量参数是字典类型

python中非关键字可变长参数和关键字变量参数的区别

标签:

原文地址:http://www.cnblogs.com/listening/p/5878908.html

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