免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3984 | 回复: 4
打印 上一主题 下一主题

python的*args是什么意思? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-06-03 08:59 |只看该作者 |倒序浏览
  1. from itertools import izip_longest
  2. def grouper(n, iterable, fillvalue=None):
  3.     "grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx"
  4.     args = [iter(iterable)] * n
  5.     return izip_longest(fillvalue=fillvalue, *args)
  6. for i in grouper(3,'ABCEDFG','x'): print i

复制代码
windows系统python2.7自带文档库函数手册中,有这样一个例子。

请问*args是怎么用的? izip_longest的参数一般有两个,一个是迭代对象(iterable),另一个是填充(filvalue)。为什么在这个例子中,参数却是fillvalue和*args。

另外,某天有朋友问: 如何把列表3个3个地分组?     这儿似乎对这个问题提供了一种别样的解答。

论坛徽章:
2
CU大牛徽章
日期:2013-04-17 11:46:28CU大牛徽章
日期:2013-04-17 11:46:39
2 [报告]
发表于 2012-06-03 10:07 |只看该作者
貌似指明为元组

论坛徽章:
0
3 [报告]
发表于 2012-06-03 15:58 |只看该作者
本帖最后由 niexining 于 2012-06-03 16:00 编辑
  1. ('A', 'B', 'C')
  2. ('E', 'D', 'F')
  3. ('G', 'x', 'x')
复制代码
这是运行结果.


是不是放了3个迭代器进去, 就3个字符3个字符地迭代?

论坛徽章:
0
4 [报告]
发表于 2012-06-03 16:17 |只看该作者
4.7.4. Unpacking Argument Lists
The reverse situation occurs when the arguments are already in a list or tuple but need to be unpacked for a function call requiring separate positional arguments. For instance, the built-in range() function expects separate start and stop arguments. If they are not available separately, write the function call with the *-operator to unpack the arguments out of a list or tuple:

>>>
>>> range(3, 6)             # normal call with separate arguments
[3, 4, 5]
>>> args = [3, 6]
>>> range(*args)            # call with arguments unpacked from a list
[3, 4, 5]
In the same fashion, dictionaries can deliver keyword arguments with the **-operator:

>>>
>>> def parrot(voltage, state='a stiff', action='voom'):
...     print "-- This parrot wouldn't", action,
...     print "if you put", voltage, "volts through it.",
...     print "E's", state, "!"
...
>>> d = {"voltage": "four million", "state": "bleedin' demised", "action": "VOOM"}
>>> parrot(**d)
-- This parrot wouldn't VOOM if you put four million volts through it. E's bleedin' demised !
                           

论坛徽章:
0
5 [报告]
发表于 2012-06-05 16:37 |只看该作者
回复 4# anonymous0502

这个两个例子很好.   剩下的就是关于迭代器的还太理解.

   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP