2006年02月20日 星期一 00:09
或者如果要达到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
2006年02月20日 星期一 00:14
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
2006年02月20日 星期一 00:27
谢谢,已经找到 我还更想知道,如果不用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
2006年02月20日 星期一 00:31
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
2006年02月20日 星期一 10:30
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 > >
2006年02月20日 星期一 10:40
如果没有那么复杂的。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
2006年02月22日 星期三 15:09
收到 这个很有帮助。。 在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
Zeuux © 2025
京ICP备05028076号