免费注册 查看新帖 |

Chinaunix

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

请教两个数组的操作 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-02-05 00:46 |只看该作者 |倒序浏览
本帖最后由 sunki 于 2012-02-05 00:49 编辑


第一个数组

['0.83',
'0.83',
'0.83',
'0.84',
'0.85',
'0.85',
'0.86',
'0.86',
'0.86',
'0.86',
'0.87',
'0.87',
'0.87',
'0.87',
'0.87',
'0.87',
'0.87',
'0.87',
'0.88',
'0.88',
'0.88',
'0.88',
'0.88',
'0.88',
'0.88',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89',
'0.89']


第二个数组

['http://test.com/item.htm?id=14242439587',
'http://test.com/item.htm?id=14160611805',
'http://test.com/item.htm?id=13740161236',
'http://test.com/item.htm?id=13672618371',
'http://test.com/item.htm?id=15274128781',
'http://test.com/item.htm?id=14200171798',
'http://test.com/item.htm?id=15286064807',
'http://test.com/item.htm?id=13719042534',
'http://test.com/item.htm?id=13705702664',
'http://test.com/item.htm?id=13712522591',
'http://test.com/item.htm?id=14110079503',
'http://test.com/item.htm?id=15287188383',
'http://test.com/item.htm?id=13627873064',
'http://test.com/item.htm?id=15387516785',
'http://test.com/item.htm?id=15381480023',
'http://test.com/item.htm?id=15382360484',
'http://test.com/item.htm?id=15155652531',
'http://test.com/item.htm?id=15359892884',
'http://test.com/item.htm?id=13520194003',
'http://test.com/item.htm?id=15257168001',
'http://test.com/item.htm?id=15292864516',
'http://test.com/item.htm?id=14031475698',
'http://test.com/item.htm?id=13642697259',
'http://test.com/item.htm?id=13730454391',
'http://test.com/item.htm?id=15231648155',
'http://test.com/item.htm?id=14368248860',
'http://test.com/item.htm?id=14515468345',
'http://test.com/item.htm?id=14919164342',
'http://test.com/item.htm?id=14943712733',
'http://test.com/item.htm?id=15196640637',
'http://test.com/item.htm?id=10279087438',
'http://test.com/item.htm?id=12957729352',
'http://test.com/item.htm?id=13140768857',
'http://test.com/item.htm?id=14347084101',
'http://test.com/item.htm?id=13538806307',
'http://test.com/item.htm?id=15263744889',
'http://test.com/item.htm?id=13776436922',
'http://test.com/item.htm?id=12439623521',
'http://test.com/item.htm?id=14238403053',
'http://test.com/item.htm?id=13676742549']



我想最后排序换行输出,最小的价格在最前面 链接跟在价格后面,


'0.83','http://test.com/item.htm?id=14242439587',
'0.83' 'http://test.com/item.htm?id=14160611805',






论坛徽章:
0
2 [报告]
发表于 2012-02-05 10:48 |只看该作者
  1. for n, i in enmerate(list1):
  2.     print i, list2(n)
复制代码

论坛徽章:
0
3 [报告]
发表于 2012-02-05 13:06 |只看该作者
list1,list2
sorted(zip(list1,list2),key = lambda xx[0]))

合并两个列表之后,安装第一项元素进行排序

论坛徽章:
11
技术图书徽章
日期:2014-03-01 14:44:34天蝎座
日期:2014-05-21 22:11:59金牛座
日期:2014-05-30 17:06:14
4 [报告]
发表于 2012-02-05 16:22 |只看该作者
  1. Python 2.7.1 (r271:86832, Jul 31 2011, 19:30:53)
  2. [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin
  3. Type "help", "copyright", "credits" or "license" for more information.
  4. >>> l1=[0.23, 0,34]
  5. >>> l2 = ['hello', 'world']
  6. >>> for e1, e2 in zip(l1, l2):
  7. ...     print e1, e2
  8. ...
  9. 0.23 hello
  10. 0 world
  11. >>>
复制代码

论坛徽章:
0
5 [报告]
发表于 2012-02-05 16:29 |只看该作者
用zip()会更有效率一些

论坛徽章:
0
6 [报告]
发表于 2012-02-05 19:33 |只看该作者
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP