2006年03月26日 星期日 14:09
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
2006年03月26日 星期日 15:09
老实说,我没看出有什么好的。。。 三元运算符在我看来只是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 >
2006年03月26日 星期日 19:20
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
2006年03月27日 星期一 10:47
在 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)
2006年03月27日 星期一 13:19
有一篇文章是讨论三目运算符在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
Zeuux © 2025
京ICP备05028076号