Python论坛  - 讨论区

标题:[python-chinese] 一个关于list的简单问题

2006年08月11日 星期五 19:36

yao qu thinkinnight at gmail.com
Fri Aug 11 19:36:46 HKT 2006

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

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

2006年08月11日 星期五 22:10

flyaflya flyaflya at gmail.com
Fri Aug 11 22:10:28 HKT 2006

>>> 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

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

2006年08月11日 星期五 22:12

Dreamingk(天成) dreamingk at gmail.com
Fri Aug 11 22:12:16 HKT 2006

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.

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

2006年08月11日 星期五 22:28

thinkinnight thinkinnight at gmail.com
Fri Aug 11 22:28:12 HKT 2006

多谢
已经知道如何做了

一开始没想到用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

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号