免费注册 查看新帖 |

Chinaunix

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

请教一个最简单的python问题!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-10-18 17:34 |只看该作者 |倒序浏览
问题:
a = [[] for x in xrange(5)]
b = [0]*5

请问a=???b=????

谁知道赶快帮一下忙!多谢!!!

论坛徽章:
0
2 [报告]
发表于 2007-10-18 18:28 |只看该作者

回复 #1 goooogo 的帖子

不是吧?问个问题,半天没有人回答!!

论坛徽章:
0
3 [报告]
发表于 2007-10-18 19:53 |只看该作者
>>>a
[[], [], [], [], []]
>>>b
[0, 0, 0, 0, 0]

我放在python得到的结果..
我想明白,为什么是这个结果,

论坛徽章:
0
4 [报告]
发表于 2007-10-18 20:18 |只看该作者

回复 #3 uumylife 的帖子

晕了。我竟然忘了直接在python中执行了。
我现在知道为什么了。
1,执行了5次。所以就生成了[[],[],[],[],[]]
2,这个是乘法的特殊用法,是相当于5 ci~!

论坛徽章:
0
5 [报告]
发表于 2007-10-18 20:27 |只看该作者
我再试了一下..

range   和xrange  都是得到一样的结果,他们有什么区别吗?

论坛徽章:
0
6 [报告]
发表于 2007-10-19 08:06 |只看该作者
我抄帮助文档的:
XRange Type

The range type is an immutable sequence which is commonly used for looping. The advantage of the range type is that an range object will always take the same amount of memory, no matter the size of the range it represents. There are no consistent performance advantages.

XRange objects have very little behavior: they only support indexing, iteration, and the len() function

我抄Python In A Nutshell的:
Returns a read-only sequence object whose items are integers in arithmetic progression. The arguments are the same as for range, covered in "range". While range creates and returns a normal list object, xrange returns a sequence object of a special type, mostly meant to be used in a for statement (you can index that object, but you cannot slice it). xrange consumes less memory than range for this specific, frequent use, in which all you need to do is loop on an arithmetic progression. However, xrange has a slightly higher overhead than range for the loop itself. Overall, performance differences between xrange and range are normally small and not worth worrying about.

论坛徽章:
0
7 [报告]
发表于 2007-10-19 08:09 |只看该作者
注意以下文字:

range creates and returns a normal list object, xrange returns a sequence object of a special type, mostly meant to be used in a for statement。

xrange consumes less memory than range for this specific, frequent use, in which all you need to do is loop on an arithmetic progression

Overall, performance differences between xrange and range are normally small and not worth worrying about.

论坛徽章:
0
8 [报告]
发表于 2007-10-19 09:18 |只看该作者
也就是说,所有用到range的地方都可以用xrange代替,xrange的效率会更高些,这个理解对么?

论坛徽章:
0
9 [报告]
发表于 2007-10-19 09:51 |只看该作者
在以后的版本中range就是使用xrange来实现的了.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP