Python论坛  - 讨论区

标题:[python-chinese] a question about list

2005年11月21日 星期一 08:58

Shi Mu samrobertsmith at gmail.com
Mon Nov 21 08:58:30 HKT 2005

怎么让 [1,2,4] 化为[[1,2],1,4],[2,4]]?
多谢!

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月21日 星期一 09:02

Fluke fluke.l at gmail.com
Mon Nov 21 09:02:06 HKT 2005

On 11/21/05, Shi Mu <samrobertsmith at gmail.com> wrote:
>
> 怎么让 [1,2,4] 化为[[1,2],1,4],[2,4]]?
> 多谢!


看不出你的是什么规则

_______________________________________________
> Python中文技术讨论邮件列表
> 发言: 发邮件到 python-chinese at lists.python.cn
> 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn
> 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
>


--
Yours,
fluke
fluke at sfcube.net
http://sfcube.net/blog
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051121/9faf3979/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月21日 星期一 09:07

赵光 prolibertine at gmail.com
Mon Nov 21 09:07:52 HKT 2005

在 05-11-21,Fluke<fluke.l at gmail.com> 写道:
> On 11/21/05, Shi Mu <samrobertsmith at gmail.com> wrote:
> > 怎么让 [1,2,4] 化为[[1,2],1,4],[2,4]]?
> > 多谢!

笨办法,重建list应该可以

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月21日 星期一 09:12

xuezhu aerodew ssgzhantr at gmail.com
Mon Nov 21 09:12:07 HKT 2005

在 05-11-21,Shi Mu<samrobertsmith at gmail.com> 写道:
> 怎么让 [1,2,4] 化为[[1,2],1,4],[2,4]]?
> 多谢!
>
> _______________________________________________
> Python中文技术讨论邮件列表
> 发言: 发邮件到 python-chinese at lists.python.cn
> 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> 退订: 发送 unsubscribe 到  python-chinese-request at lists.python.cn
> 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
>
你是不是需要化成这样:[[1,2],[1,4],[2,4]]

    试试这段代码:
      lst=[1,2,4]
      resultLst=[]
       for i in range(0,len(lst)-1):
           for j in range(i+1,len(lst)):
                resultLst.append([lst[i],lst[j]])

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月21日 星期一 10:49

shapsoft shapsoft at 163.com
Mon Nov 21 10:49:34 HKT 2005

python-chinese,您好!

	我用smtplib发邮件,但需要通过代理服务器,
不改变系统设置的情况下,请问Python自身能实现吗?

        致
礼!
 				
--------------------------
Mail:shapsoft at 163.com

					shapsoft
					      2005-11-21

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月22日 星期二 03:30

xia li xia_cn at hotmail.com
Tue Nov 22 03:30:16 HKT 2005

An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051121/210d3de7/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号