python 是推荐使用迭代器的,也就是 for k in adict 形式。其次,在遍历中删除容器中的元素,在 C++ STL 和
Python 等库中,都是不推荐的,因为这种情况往往说明了你的设计方案有问题,所有都有特殊要求,对应到 python 中,就是要使用
adict.key() 做一个拷贝。最后,所有的 Python 容器都不承诺线程安全,你要多线程做这件事,本身就必须得加锁,这也说明了业务代码
设计有问题的
但由“遍历中删除特定元素”这种特例,得出“遍历dict的时候,养成使用 for k in d.keys() 的习惯”,我觉得有必要纠正一下。在
普通的遍历中,应该使用 for k in adict。
另外,对于“遍历中删除元素”这种需求,pythonic 的做法是 adict = {k, v for adict.iteritems()
if v != 0} 或 alist = [i for i in alist if i != 0]
他所说的pythonic 的做法到底是伪代码还是Python的语法???
http://ihipop.info/2010/10/1777.html
我从没见过这样的写法~~~
求教!
那就试试看呗:
>>> alist = [1,2,0,3,0,4,5]
>>> alist = [i for i in alist if i != 0]
>>> alist
[1, 2, 3, 4, 5]
--
Best Regards,
Leo Jay
--
来自: python-cn`CPyUG`华蟒用户组(中文Python技术邮件列表)
发言: pyth...@googlegroups.com
退订: python-cn+...@googlegroups.com (向此发空信即退!)
详情: http://groups-beta.google.com/group/python-cn
严正: 理解列表! 智慧提问! http://wiki.woodpecker.org.cn/moin/AskForHelp
你这是什么语法?
--
I like python!
UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/
UliWeb <<simple web framework>>: http://uliwebproject.appspot.com
My Blog: http://hi.baidu.com/limodou
因为没这样的语法。既不是list综合语法,也不是generator语法。
这个要这样写:
>>> d = dict((k,v) for k,v in d.iteritems() if v != 0)
>>> d
{'a': 1, 'c': 1}
Python的版本兼容太蛋疼了。。。。
On 11月1日, 上午11时07分, 闲云无心 <xianyunwu...@gmail.com> wrote:
> 在 2010年11月1日 上午11:05,ihipop <ihi...@gmail.com>写道:
>
>
>
> > 果然够Pythonic。。
> > 谢谢。不过我发现
> > d = {(k,v) for k,v in d.iteritems() if v != 0}
> > 这样居然不行啊
>
> > On 11月1日, 上午10时59分, Leo Jay <python.leo...@gmail.com> wrote:
> > > 2010/11/1 ihipop <ihi...@gmail.com>:
>
> > > > 为什么我的报错?
> > > >>>> d = {'a':1, 'b':0, 'c':1, 'd':0}
> > > >>>> d = {k,v for d.iteritems() if v != 0}
> > > > File "<stdin>", line 1
> > > > d = {k,v for d.iteritems() if v != 0}
>
> > > 这个要这样写:
>
> > > >>> d = dict((k,v) for k,v in d.iteritems() if v != 0)
> > > >>> d
> > > {'a': 1, 'c': 1}
>
> > > --
> > > Best Regards,
> > > Leo Jay
>
> > --
> > 来自: python-cn`CPyUG`华蟒用户组(中文Python技术邮件列表)
> > 发言: pyth...@googlegroups.com
> > 退订: python-cn+...@googlegroups.com<python-cn%2Bunsu...@googlegroups.com>(向此发空信即退!)
退订: python-cn+...@googlegroups.com (向此发空信即退!)
刚没注意,你给的那段写错了,一半是<2.7的用户,一半是>=2.7的用户....
>= 2.7 {k:v for k,v in d.iteritems() if v !=0 }
<2.7 dict([ (k,v) for k,v in d.iteritems() if v !=0 ])
On 11月1日, 上午11时13分, 闲云无心 <xianyunwu...@gmail.com> wrote:
> >> <python-cn%2Bunsu...@googlegroups.com<python-cn%252Buns...@googlegroups.com>
> >> >(向此发空信即退!)
> >> > > 详情:http://groups-beta.google.com/group/python-cn
> >> > > 严正: 理解列表! 智慧提问!http://wiki.woodpecker.org.cn/moin/AskForHelp
>
> >> > 版本要求>=py2.7
>
> >> --
> >> 来自: python-cn`CPyUG`华蟒用户组(中文Python技术邮件列表)
> >> 发言: pyth...@googlegroups.com
> >> 退订: python-cn+...@googlegroups.com<python-cn%2Bunsu...@googlegroups.com>(向此发空信即退!)
> >> 详情:http://groups-beta.google.com/group/python-cn
> >> 严正: 理解列表! 智慧提问!http://wiki.woodpecker.org.cn/moin/AskForHelp
>
中括号可以去掉。
On 11月1日, 上午11时27分, Leo Jay <python.leo...@gmail.com> wrote:
> 2010/11/1 闲云无心 <xianyunwu...@gmail.com>:
纯粹无聊^_^
> --
> 来自: python-cn`CPyUG`华蟒用户组(中文Python技术邮件列表)
> 发言: pyth...@googlegroups.com
> 退订: python-cn+...@googlegroups.com (向此发空信即退!)
filter要赋值一次。
实际上st已经被修改了。
In [11]: st=[1,2,3,4]
In [12]: map((lambda x:x==2 and st.remove(x)), st)
Out[12]: [False, None, False]
In [13]: st
Out[13]: [1, 3, 4]
当然,只是好玩。^_^
Best Regards,
Leo Jay
在2.6里报错:
>>> d = {(k,v) for (k,v) in d.items() if v!=0}
File "<stdin>", line 1
d = {(k,v) for (k,v) in d.items() if v!=0}
^
SyntaxError: invalid syntax
Best Regards,
Leo Jay