2006年08月11日 星期五 19:36
Hello: 大家好,我在写一个小程序的时候,想到一个关于list的问题,但是没有想到好的解决方法, 放上来大家看看如何解决。 sz=['34','25'] li=[2,3,4] 现在如何做使得sz的元素变为int,然后加入li中呢? 即最后得到li=[2,3,4,34,25] 谢谢! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060811/8f82e6b8/attachment.html
2006年08月11日 星期五 22:10
>>> sz=['34','25'] >>> li=[2,3,4] >>> for i in sz: li.append(int(i)) On 8/11/06, yao qu <thinkinnight at gmail.com> wrote: > > Hello: > 大家好,我在写一个小程序的时候,想到一个关于list的问题,但是没有想到好的解决方法, > 放上来大家看看如何解决。 > > sz=['34','25'] > li=[2,3,4] > > 现在如何做使得sz的元素变为int,然后加入li中呢? > 即最后得到li=[2,3,4,34,25] > > 谢谢! > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- http://www.flyaflya.com powered by pygame+python -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060811/93fbbb50/attachment.html
2006年08月11日 星期五 22:12
li.extend([int(i) for i in sz]) #or li.extend(map(int, sz)) On 8/11/06, yao qu <thinkinnight at gmail.com> wrote: > Hello: > 大家好,我在写一个小程序的时候,想到一个关于list的问题,但是没有想到好的解决方法, > 放上来大家看看如何解决。 > > sz=['34','25'] > li=[2,3,4] > > 现在如何做使得sz的元素变为int,然后加入li中呢? > 即最后得到li=[2,3,4,34,25] > > 谢谢! > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > -- Dreamingk (tc, 天成) email: dreamingk at gmail.com tc at exoweb.net website: http://www.exoweb.net http://python.cn http://django.cn http://zope.cn Exoweb (北京轩辕互动科技有限公司) 北京市朝阳区金台路甜水园东街2号 甜水园商务中心A505 100026 Python, I love this language.
2006年08月11日 星期五 22:28
多谢 已经知道如何做了 一开始没想到用extend 在06-8-11,Dreamingk(天成) <dreamingk at gmail.com> 写道: > > li.extend([int(i) for i in sz]) > > #or > > li.extend(map(int, sz)) > > > > On 8/11/06, yao qu <thinkinnight at gmail.com> wrote: > > Hello: > > 大家好,我在写一个小程序的时候,想到一个关于list的问题,但是没有想到好的解决方法, > > 放上来大家看看如何解决。 > > > > sz=['34','25'] > > li=[2,3,4] > > > > 现在如何做使得sz的元素变为int,然后加入li中呢? > > 即最后得到li=[2,3,4,34,25] > > > > 谢谢! > > > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to > > python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > Dreamingk (tc, 天成) > email: > dreamingk at gmail.com > tc at exoweb.net > website: > http://www.exoweb.net > http://python.cn > http://django.cn > http://zope.cn > Exoweb (北京轩辕互动科技有限公司) > 北京市朝阳区金台路甜水园东街2号 > 甜水园商务中心A505 100026 > Python, I love this language. > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060811/a08e72e4/attachment-0001.htm
Zeuux © 2025
京ICP备05028076号