2005年09月05日 星期一 23:08
我知道python程序是解释运行的,想问问有没有可能编译打包,脱离python,就想c写的程序那样,生成二进制课执行文件。 -- Yours, fluke fluke at sfcube.net http://sfcube.net/blog -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050905/eda0ad0d/attachment.htm
2005年09月05日 星期一 23:09
PY2EXE 用这个可以打包 在05-9-5,Fluke <fluke.l at gmail.com> 写道: > > 我知道python程序是解释运行的,想问问有没有可能编译打包,脱离python,就想c写的程序那样,生成二进制课执行文件。 > > -- > Yours, > fluke > fluke at sfcube.net > http://sfcube.net/blog > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 阿弥陀佛 晕哉 晕哉 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050905/b825944d/attachment.html
2005年09月05日 星期一 23:13
今天看python 2.1 宝典,好像可以吧! 以前总在想怎么把自己写的程序发布出去,今天终于看到了。 有好几种发布方式!具体的细节还没来得及看。 在05-9-5,Fluke <fluke.l at gmail.com> 写道: > > 我知道python程序是解释运行的,想问问有没有可能编译打包,脱离python,就想c写的程序那样,生成二进制课执行文件。 > > -- > Yours, > fluke > fluke at sfcube.net > http://sfcube.net/blog > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050905/3e9f5434/attachment.htm
2005年09月06日 星期二 08:24
其实真正的python解释器不是那个exe,而是在windows系统目录下的python2x.dll 在 05-9-5,Fluke<fluke.l at gmail.com> 写道: > 我知道python程序是解释运行的,想问问有没有可能编译打包,脱离python,就想c写的程序那样,生成二进制课执行文件。 > > -- > Yours, > fluke > fluke at sfcube.net > http://sfcube.net/blog > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 茫茫人海,你是我的最爱
2005年09月06日 星期二 09:40
这个 python2x.dll是Windows自带的么? 在 05-9-6,大熊<bearsprite at gmail.com> 写道: > 其实真正的python解释器不是那个exe,而是在windows系统目录下的python2x.dll > > 在 05-9-5,Fluke<fluke.l at gmail.com> 写道: > > 我知道python程序是解释运行的,想问问有没有可能编译打包,脱离python,就想c写的程序那样,生成二进制课执行文件。 > > > > -- > > Yours, > > fluke > > fluke at sfcube.net > > http://sfcube.net/blog > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > -- > 茫茫人海,你是我的最爱 > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > >
2005年09月06日 星期二 09:43
晕。你就用py2exe打包就行了。 在05-9-6,Wanna Fly <horizon.w at gmail.com> 写道: > > 这个 python2x.dll是Windows自带的么? > > 在 05-9-6,大熊<bearsprite at gmail.com> 写道: > > 其实真正的python解释器不是那个exe,而是在windows系统目录下的python2x.dll > > > > 在 05-9-5,Fluke<fluke.l at gmail.com> 写道: > > > 我知道python程序是解释运行的,想问问有没有可能编译打包,脱离python,就想c写的程序那样,生成二进制课执行文件。 > > > > > > -- > > > Yours, > > > fluke > > > fluke at sfcube.net > > > http://sfcube.net/blog > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > -- > > 茫茫人海,你是我的最爱 > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 阿弥陀佛 晕哉 晕哉 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050906/50aa78e4/attachment.html
2005年09月06日 星期二 09:59
python.exe 也是使用的 python2x.dll 这个dll , 在用py2exe打包的时候会包含进去相应的 dll 及 python其他的库。 和 VB的感觉很像 On 9/6/05, 头太晕 <super852 at gmail.com> wrote: > > 晕。你就用py2exe打包就行了。 > > 在05-9-6,Wanna Fly <horizon.w at gmail.com> 写道: > > > > 这个 python2x.dll是Windows自带的么? > > > > 在 05-9-6,大熊<bearsprite at gmail.com> 写道: > > > 其实真正的python解释器不是那个exe,而是在windows系统目录下的python2x.dll > > > > > > 在 05-9-5,Fluke< fluke.l at gmail.com> 写道: > > > > 我知道python程序是解释运行的,想问问有没有可能编译打包,脱离python,就想c写的程序那样,生成二进制课执行文件。 > > > > > > > > -- > > > > Yours, > > > > fluke > > > > fluke at sfcube.net > > > > http://sfcube.net/blog > > > > _______________________________________________ > > > > python-chinese list > > > > python-chinese at lists.python.cn > > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > > > > > -- > > > 茫茫人海,你是我的最爱 > > > > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > -- > 阿弥陀佛 晕哉 晕哉 > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050906/e5b1fda3/attachment.htm
2005年09月06日 星期二 11:16
Python中似乎没有 ++, --操作符。 有这种简便的实现方法吗? 谢谢 ################################################## ## My webblog: http://logins.blogchina.com/ ## ################################################## ___________________________________________________________ 雅虎免费G邮箱-中国第一绝无垃圾邮件骚扰超大邮箱 http://cn.mail.yahoo.com
2005年09月06日 星期二 11:28
http://www.norvig.com/python-iaq.html 第四个问题 On 9/6/05, 刀波儿 <metallica_coo at yahoo.com.cn> wrote: > > Python中似乎没有 ++, --操作符。 > 有这种简便的实现方法吗? > 谢谢 > > ################################################## > ## My webblog: http://logins.blogchina.com/ ## > ################################################## > > > > > > > ___________________________________________________________ > 雅虎免费G邮箱-中国第一绝无垃圾邮件骚扰超大邮箱 > http://cn.mail.yahoo.com > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050906/eeb89d78/attachment.htm
2005年09月06日 星期二 11:57
Good Q&A;, Thanks! --- panhudie <nirvana117 at gmail.com>写道: > http://www.norvig.com/python-iaq.html > 第四个问题 > > On 9/6/05, 刀波儿 <metallica_coo at yahoo.com.cn> > wrote: > > > > Python中似乎没有 ++, --操作符。 > > 有这种简便的实现方法吗? > > 谢谢 > > > > ################################################## > > ## My webblog: http://logins.blogchina.com/ ## > > ################################################## > > > > > > > > > > > > > > > ___________________________________________________________ > > 雅虎免费G邮箱-中国第一绝无垃圾邮件骚扰超大邮箱 > > http://cn.mail.yahoo.com > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > ################################################## ## My webblog: http://logins.blogchina.com/ ## ################################################## ___________________________________________________________ 雅虎免费G邮箱-中国第一绝无垃圾邮件骚扰超大邮箱 http://cn.mail.yahoo.com
2005年09月06日 星期二 11:58
我也发现了这个问题,只有直接用i = i+1了 On 9/6/05, 刀波儿 <metallica_coo at yahoo.com.cn> wrote: > > Python中似乎没有 ++, --操作符。 > 有这种简便的实现方法吗? > 谢谢 > > ################################################## > ## My webblog: http://logins.blogchina.com/ ## > ################################################## > > > > > > > ___________________________________________________________ > 雅虎免费G邮箱-中国第一绝无垃圾邮件骚扰超大邮箱 > http://cn.mail.yahoo.com > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > -- Yours, fluke fluke at sfcube.net http://sfcube.net/blog -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050906/5c120928/attachment.html
2005年09月06日 星期二 12:10
在 05-9-6,panhudie<nirvana117 at gmail.com> 写道: > http://www.norvig.com/python-iaq.html > > 第四个问题 好资料!!! 为了大家更好的理解 开启" Python 罕见问题集" 文档项目! http://wiki.woodpecker.org.cn/moin/PyIAQ 大家有空就多想一想哪………… > > On 9/6/05, 刀波儿 <metallica_coo at yahoo.com.cn> wrote: > > Python中似乎没有 ++, --操作符。 > > 有这种简便的实现方法吗? > > 谢谢 > > > > ################################################## > > ## My webblog: http://logins.blogchina.com/ ## > > ################################################## > > > > > > > > > > > > > > > ___________________________________________________________ > > 雅虎免费G邮箱-中国第一绝无垃圾邮件骚扰超大邮箱 > > http://cn.mail.yahoo.com > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- [Time is unimportant, only life important!]
2005年09月06日 星期二 12:11
i += n, 这样的格式还是支持的 在 05-9-6,Fluke<fluke.l at gmail.com> 写道: > 我也发现了这个问题,只有直接用i = i+1了 > > > On 9/6/05, 刀波儿 <metallica_coo at yahoo.com.cn> wrote: > > Python中似乎没有 ++, --操作符。 > > 有这种简便的实现方法吗? > > 谢谢 > > > > ################################################## > > ## My webblog: http://logins.blogchina.com/ ## > > ################################################## > > > > > > > > > > > > > > > ___________________________________________________________ > > 雅虎免费G邮箱-中国第一绝无垃圾邮件骚扰超大邮箱 > > http://cn.mail.yahoo.com > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > -- > Yours, > fluke > fluke at sfcube.net > http://sfcube.net/blog > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 茫茫人海,你是我的最爱
2005年09月06日 星期二 12:21
搞得还真快:) 这个我也是才发现(/twisted/doc/historic/2004/ibm/talk.html)里面提到了 "Peter Norvig's infamous The Gettysburg Powerpoint Presentation"google过后 还是没搞清楚是什么意思,不过到找到了他的python IAQ. On 9/6/05, Zoom Quiet <zoom.quiet at gmail.com> wrote: > > 在 05-9-6,panhudie<nirvana117 at gmail.com> 写道: > > http://www.norvig.com/python-iaq.html > > > > 第四个问题 > 好资料!!! > 为了大家更好的理解 > 开启" Python 罕见问题集" 文档项目! > http://wiki.woodpecker.org.cn/moin/PyIAQ > > 大家有空就多想一想哪………… > > > > > On 9/6/05, 刀波儿 <metallica_coo at yahoo.com.cn> wrote: > > > Python中似乎没有 ++, --操作符。 > > > 有这种简便的实现方法吗? > > > 谢谢 > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050906/8e4431f2/attachment.htm
2005年09月07日 星期三 13:42
++ i += 1 -- i -= 1 在 05-9-6,panhudie<nirvana117 at gmail.com> 写道: > 搞得还真快:) > 这个我也是才发现(/twisted/doc/historic/2004/ibm/talk.html)里面提到了 > "Peter Norvig's infamous The Gettysburg Powerpoint Presentation"google过后 > 还是没搞清楚是什么意思,不过到找到了他的python IAQ. > > On 9/6/05, Zoom Quiet <zoom.quiet at gmail.com> wrote: > > 在 05-9-6,panhudie<nirvana117 at gmail.com> 写道: > > > http://www.norvig.com/python-iaq.html > > > > > > 第四个问题 > > 好资料!!! > > 为了大家更好的理解 > > 开启" Python 罕见问题集" 文档项目! > > http://wiki.woodpecker.org.cn/moin/PyIAQ > > > > 大家有空就多想一想哪………… > > > > > > > > On 9/6/05, 刀波儿 <metallica_coo at yahoo.com.cn> wrote: > > > > Python中似乎没有 ++, --操作符。 > > > > 有这种简便的实现方法吗? > > > > 谢谢 > > > > > > > > > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 梅劲松
Zeuux © 2025
京ICP备05028076号