Python论坛  - 讨论区

标题:[python-chinese] Re: tkinter

2006年08月09日 星期三 18:52

linda.s samrobertsmith at gmail.com
Wed Aug 9 18:52:31 HKT 2006

可以用一个python shell开两个tkinter吗?谢谢!

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

2006年08月09日 星期三 19:43

天才狐狸 mem_fox at 263.net
Wed Aug 9 19:43:25 HKT 2006

Hi

  请看看这个代码为什么,运行的时候说
  File "PARSIN~1.PY", line 24, in seq2Binary
    if int(c) > 0 :
   ValueError: invalid literal for int():

代码如下:
def seq2Binary(_self):
	count =0		
	for c in _self.frequence:
		if int(c)>0 :
			count += 1<

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

2006年08月09日 星期三 19:45

天才狐狸 mem_fox at 263.net
Wed Aug 9 19:45:32 HKT 2006

Hi
   请问python的字符串有trim方法吗? 比如 '  123' 希望可以直接去掉前后的空格
还有python可以写3元操作吗?  Count += count>0?1<

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

2006年08月09日 星期三 20:00

Leo Jay python.leojay at gmail.com
Wed Aug 9 20:00:19 HKT 2006

On 8/9/06, 天才狐狸 <mem_fox at 263.net> wrote:
>
>
> Hi
>   请问python的字符串有trim方法吗? 比如 '  123' 希望可以直接去掉前后的空格


" 1234 ".strip()

还有python可以写3元操作吗?  Count += count>0?1<
> 没有


-- 
Best Regards,
Leo Jay
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060809/4394cb9a/attachment.html

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

2006年08月09日 星期三 20:29

limodou limodou at gmail.com
Wed Aug 9 20:29:11 HKT 2006

On 8/9/06, 天才狐狸 <mem_fox at 263.net> wrote:
>
> Hi
>
>   请看看这个代码为什么,运行的时候说
>   File "PARSIN~1.PY", line 24, in seq2Binary
>     if int(c) > 0 :
>    ValueError: invalid literal for int():
>
> 代码如下:
> def seq2Binary(_self):
>         count =0
>         for c in _self.frequence:
>                 if int(c)>0 :
>                         count += 1<>         return count
>
把c打印出来看看是什么东西?

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

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

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

selflu self.lu at gmail.com
Wed Aug 9 22:15:11 HKT 2006

没明白你的意思,能换种说法吗?

On 8/9/06, linda. s <samrobertsmith at gmail.com> wrote:
>
> 可以用一个python shell开两个tkinter吗?谢谢!
>
> _______________________________________________
> 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/20060809/1adb6ef1/attachment.html

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

2006年08月09日 星期三 23:56

Dreamingk(天成) dreamingk at gmail.com
Wed Aug 9 23:56:30 HKT 2006

有类似的,不过不完全一样

a and b or c

On 8/9/06, Leo Jay <python.leojay at gmail.com> wrote:
>
> On 8/9/06, 天才狐狸 <mem_fox at 263.net> wrote:
> >
> > Hi
> >   请问python的字符串有trim方法吗? 比如 '  123' 希望可以直接去掉前后的空格
>
> " 1234 ".strip()
>
> > 还有python可以写3元操作吗?  Count += count>0?1<> >
> >
> 没有
>
>
> --
> Best Regards,
> Leo Jay
> _______________________________________________
> 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月10日 星期四 00:06

wang yingqi wangyingqi at gmail.com
Thu Aug 10 00:06:27 HKT 2006

有办法可以模拟 if  ? :
a and b or c
类似与C中的
if a ? b : c;
但是有一点要注意
表达式b必须为真,逻辑可以自己整理一下,便可以了解其中的奥妙~
dive into python 4.17中有介绍



On 8/9/06, Leo Jay <python.leojay at gmail.com> wrote:
>
>  On 8/9/06, 天才狐狸 <mem_fox at 263.net> wrote:
> >
> >
> > Hi
> >   请问python的字符串有trim方法吗? 比如 '  123' 希望可以直接去掉前后的空格
>
>
>  " 1234 ".strip()
>
> 还有python可以写3元操作吗?  Count += count>0?1<> >
> > 没有
>
>
> --
> Best Regards,
>
> Leo Jay
>
> _______________________________________________
> 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
>
>


-- 
wangyingqi
c++/python/palm/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060810/b306f1f1/attachment.html

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

2006年08月10日 星期四 06:34

shhgs shhgs.efhilt at gmail.com
Thu Aug 10 06:34:17 HKT 2006

Py2.5里有了

不过我个人认为多余。

On 8/9/06, wang yingqi <wangyingqi at gmail.com> wrote:
>
> 有办法可以模拟 if  ? :
>
> a and b or c
>
> 类似与C中的
> if a ? b : c;
> 但是有一点要注意
> 表达式b必须为真,逻辑可以自己整理一下,便可以了解其中的奥妙~
> dive into python 4.17中有介绍
>
>
>
> On 8/9/06, Leo Jay <python.leojay at gmail.com> wrote:
> >
>
>
>
> On 8/9/06, 天才狐狸 <mem_fox at 263.net > wrote:
> >
> > Hi
> >   请问python的字符串有trim方法吗? 比如 '  123' 希望可以直接去掉前后的空格
>
>
>
> " 1234 ".strip()
>
>
> > 还有python可以写3元操作吗?  Count += count>0?1<> >
> >
>
> 没有
>
>
> --
> Best Regards,
>
> Leo Jay
> _______________________________________________
> 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
>
>
>
>
>
> --
> wangyingqi
> c++/python/palm/
> _______________________________________________
> 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年08月13日 星期日 02:19

Linker Lin linkerlin88 at gmail.com
Sun Aug 13 02:19:55 HKT 2006

>>> s=' 123'
>>> s.strip()
'123'


On 8/10/06, shhgs <shhgs.efhilt at gmail.com> wrote:
>
> Py2.5里有了
>
> 不过我个人认为多余。
>
> On 8/9/06, wang yingqi <wangyingqi at gmail.com> wrote:
> >
> > 有办法可以模拟 if  ? :
> >
> > a and b or c
> >
> > 类似与C中的
> > if a ? b : c;
> > 但是有一点要注意
> > 表达式b必须为真,逻辑可以自己整理一下,便可以了解其中的奥妙~
> > dive into python 4.17中有介绍
> >
> >
> >
> > On 8/9/06, Leo Jay <python.leojay at gmail.com> wrote:
> > >
> >
> >
> >
> > On 8/9/06, 天才狐狸 <mem_fox at 263.net > wrote:
> > >
> > > Hi
> > >   请问python的字符串有trim方法吗? 比如 '  123' 希望可以直接去掉前后的空格
> >
> >
> >
> > " 1234 ".strip()
> >
> >
> > > 还有python可以写3元操作吗?  Count += count>0?1<> > >
> > >
> >
> > 没有
> >
> >
> > --
> > Best Regards,
> >
> > Leo Jay
> > _______________________________________________
> > 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
> >
> >
> >
> >
> >
> > --
> > wangyingqi
> > c++/python/palm/
> > _______________________________________________
> > 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
>
>


-- 
Linker M Lin
linkerlin88 at gmail.com
linker.m.lin at gmail.com
  ※※※※※※※※※
  ※※我思故我在※※
  ※※※※※※※※※
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060813/7b45233c/attachment.html

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号