Python论坛  - 讨论区

标题:[python-chinese] Py2exe

2006年03月26日 星期日 14:09

cry zyqmail at tom.com
Sun Mar 26 14:09:26 HKT 2006

xxmplus,您好!

效果当然是一样,但是用起来还是有差别:
比如,如果能这样:
print aaa==True?"True":"False"
还是比
if aaa==True:
	print "True"
else:
	print "False"
好些。

也可能我受C的影响太深。呵呵。



在 2006-03-26 00:42:00 您写道:
>三元运算符用ifelse也一样
>
>在 06-3-26,limodou<limodou at gmail.com> 写道:
>> On 3/25/06, cry <zyqmail at tom.com> wrote:
>> > python,您好!
>> >
>> > 请教3个问题:
>> > 1、用PY2EXE打包的程序中,print没有作用,如何才能看到print输出的信息呢?
>> > 2、PYTHON中有没有类似C中的(条件?TRUE处理:FALSE处理)的用法?
>> > 3、在WX中开了一个窗口,wxTextCtrl,输出信息的时候,有时候会出现怎么输出都没有显示的情况,而程序的其它功能都继续运行正常。请问是什么问题?谁遇到过?
>> >
>>
>> 1. 使用日志来记录
>> 2. 没有,但可以通过 a and b or c 来模拟
>> 3. 可能出现异常了吧,不好说。建议先不打包运行,看一看有没有报错,然后使用异常来进行处理。
>>
>> --
>> 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
>>
>>
>_______________________________________________
>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

                    致
礼!

            cry
            zyqmail at tom.com



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

2006年03月26日 星期日 15:09

xxmplus xxmplus at gmail.com
Sun Mar 26 15:09:52 HKT 2006

老实说,我没看出有什么好的。。。

三元运算符在我看来只是syntactic sugar而已

在 06-3-26,cry<zyqmail at tom.com> 写道:
> xxmplus,您好!
>
> 效果当然是一样,但是用起来还是有差别:
> 比如,如果能这样:
> print aaa==True?"True":"False"
> 还是比
> if aaa==True:
>         print "True"
> else:
>         print "False"
> 好些。
>
> 也可能我受C的影响太深。呵呵。
>
>
>
> 在 2006-03-26 00:42:00 您写道:
> >三元运算符用ifelse也一样
> >
> >在 06-3-26,limodou<limodou at gmail.com> 写道:
> >> On 3/25/06, cry <zyqmail at tom.com> wrote:
> >> > python,您好!
> >> >
> >> > 请教3个问题:
> >> > 1、用PY2EXE打包的程序中,print没有作用,如何才能看到print输出的信息呢?
> >> > 2、PYTHON中有没有类似C中的(条件?TRUE处理:FALSE处理)的用法?
> >> > 3、在WX中开了一个窗口,wxTextCtrl,输出信息的时候,有时候会出现怎么输出都没有显示的情况,而程序的其它功能都继续运行正常。请问是什么问题?谁遇到过?
> >> >
> >>
> >> 1. 使用日志来记录
> >> 2. 没有,但可以通过 a and b or c 来模拟
> >> 3. 可能出现异常了吧,不好说。建议先不打包运行,看一看有没有报错,然后使用异常来进行处理。
> >>
> >> --
> >> 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
> >>
> >>
> >_______________________________________________
> >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
>
>> 礼!
>
>             cry
>             zyqmail at tom.com
>
>
> _______________________________________________
> 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年03月26日 星期日 19:20

Shixin Zeng shixinzeng at gmail.com
Sun Mar 26 19:20:58 HKT 2006

On 3/26/06, xxmplus <xxmplus at gmail.com> wrote:
>
> 老实说,我没看出有什么好的。。。
>
> 三元运算符在我看来只是syntactic sugar而已
>
> 在 06-3-26,cry<zyqmail at tom.com> 写道:
> > xxmplus,您好!
> >
> > 效果当然是一样,但是用起来还是有差别:
> > 比如,如果能这样:
> > print aaa==True?"True":"False"
> > 还是比
> > if aaa==True:
> >         print "True"
> > else:
> >         print "False"
> > 好些。
> >
> > 也可能我受C的影响太深。呵呵。


在python 2.5中将会有这个功能,不过跟C中的语法还是有些区别的是

x = true_value if condition else false_value

参见:http://docs.python.org/dev/whatsnew/node2.html


>
> >
> >
> > 在 2006-03-26 00:42:00 您写道:
> > >三元运算符用ifelse也一样
> > >
> > >在 06-3-26,limodou<limodou at gmail.com> 写道:
> > >> On 3/25/06, cry <zyqmail at tom.com> wrote:
> > >> > python,您好!
> > >> >
> > >> > 请教3个问题:
> > >> > 1、用PY2EXE打包的程序中,print没有作用,如何才能看到print输出的信息呢?
> > >> > 2、PYTHON中有没有类似C中的(条件?TRUE处理:FALSE处理)的用法?
> > >> >
> 3、在WX中开了一个窗口,wxTextCtrl,输出信息的时候,有时候会出现怎么输出都没有显示的情况,而程序的其它功能都继续运行正常。请问是什么问题?谁遇到过?
> > >> >
> > >>
> > >> 1. 使用日志来记录
> > >> 2. 没有,但可以通过 a and b or c 来模拟
> > >> 3. 可能出现异常了吧,不好说。建议先不打包运行,看一看有没有报错,然后使用异常来进行处理。
> > >>
> > >> --
> > >> 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
> > >>
> > >>
> > >_______________________________________________
> > >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
> >
> >                     致
> > 礼!
> >
> >             cry
> >             zyqmail at tom.com
> >
> >
> > _______________________________________________
> > 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
>
>


--
Best regards

Shixin Zeng
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060326/fb50cfc5/attachment.html

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

2006年03月27日 星期一 10:47

FireBird ygonic at gmail.com
Mon Mar 27 10:47:39 HKT 2006

在 06-3-26,cry<zyqmail at tom.com> 写道:
> xxmplus,您好!
>
> 效果当然是一样,但是用起来还是有差别:
> 比如,如果能这样:
> print aaa==True?"True":"False"
> 还是比
> if aaa==True:
>         print "True"
> else:
>         print "False"

若只是实现这个功能,python中可以使用str()函数,更好用。
print str(aaa)

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

2006年03月27日 星期一 13:19

黑沙 fred.li.1979.m.bj.prc at gmail.com
Mon Mar 27 13:19:49 HKT 2006

有一篇文章是讨论三目运算符在py中的等价物的!
http://aspn.activestate.com/ASPN/Python/Cookbook/Recipe/52310
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060327/f8917ed5/attachment.html

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号