Python论坛  - 讨论区

标题:[python-chinese] 问一下,python中有类似c的scanf没?

2006年02月20日 星期一 00:09

Peng Xiaoyu peng.xiaoyu at gmail.com
Mon Feb 20 00:09:43 HKT 2006

或者如果要达到scanf("%s %*s %s", &a;, &b;, &c;)中的%*s的效果,应该怎么办?

谢谢
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060220/1b01afc6/attachment.html

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

2006年02月20日 星期一 00:14

limodou limodou at gmail.com
Mon Feb 20 00:14:02 HKT 2006

On 2/20/06, Peng Xiaoyu <peng.xiaoyu at gmail.com> wrote:
> 或者如果要达到scanf("%s %*s %s", &a;, &b;, &c;)中的%*s的效果,应该怎么办?
>
> 谢谢
>

在网上有一个叫 scanf 的python模块,可以找一找。python没有内置对scanf的支持。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

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

2006年02月20日 星期一 00:27

Peng Xiaoyu peng.xiaoyu at gmail.com
Mon Feb 20 00:27:51 HKT 2006

谢谢,已经找到

我还更想知道,如果不用scanf,对于这种类型问题的处理(也就是输入一行是固定个数,且用空格分离的字符串,我只要提取其中的某几个固定位置的字符串),比较pythonic的做法是什么?

在06-2-20,limodou <limodou at gmail.com> 写道:
>
> On 2/20/06, Peng Xiaoyu <peng.xiaoyu at gmail.com> wrote:
> > 或者如果要达到scanf("%s %*s %s", &a;, &b;, &c;)中的%*s的效果,应该怎么办?
> >
> > 谢谢
> >
>
> 在网上有一个叫 scanf 的python模块,可以找一找。python没有内置对scanf的支持。
>
> --
> I like python!
> My Blog: http://www.donews.net/limodou
> NewEdit Maillist: http://groups.google.com/group/NewEdit
>
> _______________________________________________
> 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/20060220/caa0db20/attachment.htm

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

2006年02月20日 星期一 00:31

limodou limodou at gmail.com
Mon Feb 20 00:31:45 HKT 2006

On 2/20/06, Peng Xiaoyu <peng.xiaoyu at gmail.com> wrote:
> 谢谢,已经找到
>
> 我还更想知道,如果不用scanf,对于这种类型问题的处理(也就是输入一行是固定个数,且用空格分离的字符串,我只要提取其中的某几个固定位置的字符串),比较pythonic的做法是什么?
>
使用字符串的split将有空格的串分隔成一个list,然后再根据位置取下标即可。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

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

2006年02月20日 星期一 10:30

Bruce Who bruce.who.hk at gmail.com
Mon Feb 20 10:30:20 HKT 2006

Python本身是没有scanf的,但你可以用re。

On 2/20/06, Peng Xiaoyu <peng.xiaoyu at gmail.com> wrote:
> 或者如果要达到scanf("%s %*s %s", &a;, &b;, &c;)中的%*s的效果,应该怎么办?
>
> 谢谢
>
> _______________________________________________
> 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
>
>

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

2006年02月20日 星期一 10:40

超群李 achilles.lee at gmail.com
Mon Feb 20 10:40:44 HKT 2006

如果没有那么复杂的。split足够了。


On 2/20/06, Bruce Who <bruce.who.hk at gmail.com> wrote:
>
> Python本身是没有scanf的,但你可以用re。
>
> On 2/20/06, Peng Xiaoyu <peng.xiaoyu at gmail.com> wrote:
> > 或者如果要达到scanf("%s %*s %s", &a;, &b;, &c;)中的%*s的效果,应该怎么办?
> >
> > 谢谢
> >
> > _______________________________________________
> > 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
> >
> >
>
> _______________________________________________
> 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
>
>


--
李超群
mobile phone:13759961869
office phone:029-87607341
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060220/a98e35bd/attachment-0001.htm

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

2006年02月22日 星期三 15:09

Bian Alex python.bian at gmail.com
Wed Feb 22 15:09:24 HKT 2006

收到
这个很有帮助。。


在06-2-20,超群李 <achilles.lee at gmail.com> 写道:
>
> 如果没有那么复杂的。split足够了。
>
>
> On 2/20/06, Bruce Who <bruce.who.hk at gmail.com> wrote:
> >
> > Python本身是没有scanf的,但你可以用re。
> >
> > On 2/20/06, Peng Xiaoyu <peng.xiaoyu at gmail.com> wrote:
> > > 或者如果要达到scanf("%s %*s %s", &a;, &b;, &c;)中的%*s的效果,应该怎么办?
> > >
> > > 谢谢
> > >
> > > _______________________________________________
> > > 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
> > >
> > >
> >
> > _______________________________________________
> > 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
> >
> >
>
>
> --
> 李超群
> mobile phone:13759961869
> office phone:029-87607341
>
> _______________________________________________
> 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/20060222/ee302eef/attachment.html

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号