2005年11月21日 星期一 08:58
怎么让 [1,2,4] 化为[[1,2],1,4],[2,4]]? 多谢!
2005年11月21日 星期一 09:02
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
2005年11月21日 星期一 09:07
在 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应该可以
2005年11月21日 星期一 09:12
在 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]])
2005年11月21日 星期一 10:49
python-chinese,您好! 我用smtplib发邮件,但需要通过代理服务器, 不改变系统设置的情况下,请问Python自身能实现吗? 致 礼! -------------------------- Mail:shapsoft at 163.com shapsoft 2005-11-21
2005年11月22日 星期二 03:30
An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051121/210d3de7/attachment.html
Zeuux © 2025
京ICP备05028076号