2006年04月27日 星期四 22:45
今天把论文交给老师审批了, 老师嫌没有使用价值, 我没有想他展示Python的美好前景, 不过我还真不知道python有什么实际应用? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060427/2c3fc38b/attachment.htm
2006年04月27日 星期四 22:57
你用 Google 吧,Google公司里面很多系统用到了 Python,这算不算实际应用? 方便的话,把你的论文放上来给大家看看吧:),反正你的老师也嫌她没有使用价 值,就不用保密了吧 吴俊玉 写道: > 今天把论文交给老师审批了, > 老师嫌没有使用价值, > 我没有想他展示Python的美好前景, > 不过我还真不知道python有什么实际应用? > > > > ------------------------------------------------------------------------ > > _______________________________________________ > 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年04月27日 星期四 23:04
到没什么好保密的,只不过全是形式主义, 照着dive into python的结构半写半翻译了些内容。 而且我的程序现在还不能在别人的机器上运行。 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060427/1e6276b2/attachment-0001.html
2006年04月27日 星期四 23:21
我的论文更惨。写个笨网站。 汗。我还想好好研究一下商业智能的。 其实写python实在太好玩了。 在06-4-27,吴俊玉 <wujunyu at gmail.com> 写道: > > 到没什么好保密的,只不过全是形式主义, > 照着dive into python的结构半写半翻译了些内容。 > > 而且我的程序现在还不能在别人的机器上运行。 > > _______________________________________________ > 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/20060427/83e800e8/attachment.htm
2006年04月27日 星期四 23:28
研究stackless 绝对能写出好论文 On 4/27/06, 谢小漫 <littlecn at gmail.com> wrote: > > 我的论文更惨。写个笨网站。 > 汗。我还想好好研究一下商业智能的。 > 其实写python实在太好玩了。 > > > 在06-4-27,吴俊玉 <wujunyu at gmail.com> 写道: > > > > 到没什么好保密的,只不过全是形式主义, > 照着dive into python的结构半写半翻译了些内容。 > > 而且我的程序现在还不能在别人的机器上运行。 > > _______________________________________________ > 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 > > -- http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060427/738fcf52/attachment.html
2006年04月27日 星期四 23:36
痛苦了一个月,也算对python有点了解了吧! 这段时间我真的觉得python写程序很舒服! 等换了系统我发一下论文吧,自己觉得对这块很多内容都涉及了。 不过论文写的很急--主要忙系统的实现去了。 不知道为什么在别人机器上不能运行。 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060427/dcb05849/attachment.htm
2006年04月27日 星期四 23:40
对stackless不了解, 接触了python后才接触到stackless stackless是不是指不使用栈,完全使用堆分配对象呢? 如果是这 样有什么优势呢--方便垃圾回收? --还望高手领进门! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060427/1db5ed51/attachment.html
2006年04月28日 星期五 07:42
大家好: 最近项目中需要从PDF中提取文本,我的C基础不好,使用Adobe PDF的SDK时 有很大的障碍,时间也不允许在这方面花费太多时间,不知道python有没有操作 PDF文件的库,主要的功能就是要求提取文本内容,不要求格式,有谁知道吗?多 谢了。 <http://codeplayer.blogbus.com/> -------------- next part -------------- _______________________________________________ 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年04月28日 星期五 08:37
不是说把对象都分配在堆上,而且把以前保存在栈上的那个frame保存到堆上去。就可以不再受栈的先进后出的约束了,传统的函数都只能调用和return,return之后函数就运行完了,保存函数上下文状态的frame也就从栈里pop出来销毁了。python后来加的yield 其实就是吸收了一点stackless的思想了,不过stackless做得更彻底,并且在这个基础上搞了一套:microthreads、channels、schedule等等的好东东。 正在用stackless写点小程序,我也还理解得不是很深刻,写起来总不是那么顺畅。 On 4/27/06, 吴俊玉 <wujunyu at gmail.com> wrote: > > 对stackless不了解, > 接触了python后才接触到stackless > stackless是不是指不使用栈,完全使用堆分配对象呢? > 如果是这 样有什么优势呢--方便垃圾回收? > > --还望高手领进门! > > _______________________________________________ > 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 > > -- http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/b386d036/attachment.html
2006年04月28日 星期五 08:37
PDFlib好像不是免费的,Reportlab我看了他们开源的工具里面没法读取pdf,如果 想要这个功能得使用pdfcatcher,这是个商业软件,我再找找看吧,非常感谢。:) tocer wrote: > # PDFlib是支持 PDF 的库,并且绑定至数个开发语言,包括 C、C++、C#、 > Java、Perl、PHP、Python、RPG、Tcl 等等。 > > # ReportLab的几个文档相关的产品中包括用于操作 PDF 的 ReportLab 工具箱。 > > 还有,新问题请单独发送,不要跟在人家后面使用恢复的形式:) > > > > 邓作霖 写道: >> 大家好: >> >> 最近项目中需要从PDF中提取文本,我的C基础不好,使用Adobe PDF的SDK >> 时有很大的障碍,时间也不允许在这方面花费太多时间,不知道python有没有 >> 操作 PDF文件的库,主要的功能就是要求提取文本内容,不要求格式,有谁知 >> 道吗?多 谢了。 >> <http://codeplayer.blogbus.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 > _______________________________________________ > 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年04月28日 星期五 08:41
你这么说我就有点了解了。 也就是说突破传统变成语言的限制了。 有机会的话看看吧! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/00fe0f59/attachment.html
2006年04月28日 星期五 08:44
我google了一下stackless,收到个www.stackless.com 本以为是stackless的大本营,为什么进去却是stackless python? 有密切的关联? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/a4ffce37/attachment.htm
2006年04月28日 星期五 08:45
我上面说的stackless都是指staclesspython了 以免误会 申明一下 On 4/28/06, 吴俊玉 <wujunyu at gmail.com> wrote: > > 你这么说我就有点了解了。 > 也就是说突破传统变成语言的限制了。 > > 有机会的话看看吧! > > _______________________________________________ > 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 > > -- http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/c5422afe/attachment.html
2006年04月28日 星期五 08:46
一搜一堆 -_-! On 4/28/06, 邓作霖 <pse-dengzl at pegasus.tj.cn> wrote: > > 大家好: > > 最近项目中需要从PDF中提取文本,我的C基础不好,使用Adobe PDF的SDK时 > 有很大的障碍,时间也不允许在这方面花费太多时间,不知道python有没有操作 > PDF文件的库,主要的功能就是要求提取文本内容,不要求格式,有谁知道吗?多 > 谢了。 > <http://codeplayer.blogbus.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 > > -- http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/14b14829/attachment.htm
2006年04月28日 星期五 08:50
因为就只有个stacklesspython :) On 4/28/06, 吴俊玉 <wujunyu at gmail.com> wrote: > > 我google了一下stackless,收到个www.stackless.com > 本以为是stackless的大本营,为什么进去却是stackless python? > > 有密切的关联? > > _______________________________________________ > 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 > > -- http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/375ca8b6/attachment-0001.html
2006年04月28日 星期五 08:52
# PDFlib是支持 PDF 的库,并且绑定至数个开发语言,包括 C、C++、C#、 Java、Perl、PHP、Python、RPG、Tcl 等等。 # ReportLab的几个文档相关的产品中包括用于操作 PDF 的 ReportLab 工具箱。 还有,新问题请单独发送,不要跟在人家后面使用恢复的形式:) 邓作霖 写道: > 大家好: > > 最近项目中需要从PDF中提取文本,我的C基础不好,使用Adobe PDF的SDK时 > 有很大的障碍,时间也不允许在这方面花费太多时间,不知道python有没有操作 > PDF文件的库,主要的功能就是要求提取文本内容,不要求格式,有谁知道吗?多 > 谢了。 > <http://codeplayer.blogbus.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
2006年04月28日 星期五 09:27
没有使用价值?只有Java算有价值么?笑…… Python还要讲什么"美好前景"么?现在还在讨论Python的"前景",是不是太可笑了? 这年头,论文还要讲实用价值……所谓学校,不应该是教育学问之所么? 或者给他做个IronPython的代码分析?你们老师会不会怀疑微软的商业眼光? 或者在ZOPE上随便做个小应用? 或者……Python的东西,其实可做的很多。适当迎合下上位者的口味,也是一种无奈的妥协吧,呵呵。 在06-4-27,吴俊玉 <wujunyu at gmail.com> 写道: > > 今天把论文交给老师审批了, > 老师嫌没有使用价值, > 我没有想他展示Python的美好前景, > 不过我还真不知道python有什么实际应用? > > > > _______________________________________________ > 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 > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/28b77080/attachment.html
2006年04月28日 星期五 09:35
老师倒是比较牛 只是他搞得是信息家电和嵌入式。 他到没有直说 只是这一项满分10,他给了我4分 一般都是扣一两分的。 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/8c0ed8c9/attachment.htm
2006年04月28日 星期五 09:44
Python在嵌入式里面确实没有什么亮点,主要是目前嵌入式的CPU太弱了,基本都是C或者ASM的程序。我们现在在工厂领域运用Python,主要是做业务定制,这样每个客户可以一个版本,每个版本不会干扰别的版本。 在06-4-28,吴俊玉 <wujunyu at gmail.com> 写道: > > 老师倒是比较牛 > 只是他搞得是信息家电和嵌入式。 > > 他到没有直说 > 只是这一项满分10,他给了我4分 > 一般都是扣一两分的。 > > _______________________________________________ > 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 > > -- My Blog >> http://leejd.cndev.org My QQ >> 9847243 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/83e5e20a/attachment.html
2006年04月28日 星期五 10:03
是不是你的论文和导师的领域相隔太远?这可能会影响他的判断。不知兄台申请的是学士学位还是硕士学位,如果是学士学位的话,这么低的分确实是不太留情面了。 不过也别太在意,如果兄台以后不想在学术界,就这样吧,只要能顺利答辩通过就好。呵呵,能否将论文共享一下?是不是能上传到啄木鸟呢? On 4/28/06, 吴俊玉 <wujunyu at gmail.com> wrote: > > 老师倒是比较牛 > 只是他搞得是信息家电和嵌入式。 > > 他到没有直说 > 只是这一项满分10,他给了我4分 > 一般都是扣一两分的。 > > _______________________________________________ > 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 > > -- Robert Python源码剖析――http://blog.donews.com/lemur/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/0ac57f27/attachment.html
2006年04月28日 星期五 10:27
PYTHON在嵌入式开发其实已经展露头角~~ S60不是已经有PYTHON解释器了? JAVA的"一次编译,到处运行"其实在PYTHON也适用~~现在嵌入式硬件的CPU不比当年老P,PII慢了~~内存也比十年前的PC大多了~~在适当的场合,嵌入式开发也可以暂时放下C和汇编~~用用脚本语言~~ 我认为,能用JAVA的地方,一样可以用PYTHON~~ 不了解你们老师,但是如果你们老师在嵌入式开发很牛的话~我想他是有点思想固化了~~一说嵌入开发就是C,汇编,java~~其他的就成了"没有使用价值" 在06-4-28,Robert Chen <search.pythoner at gmail.com> 写道: > > 是不是你的论文和导师的领域相隔太远?这可能会影响他的判断。不知兄台申请的是学士学位还是硕士学位,如果是学士学位的话,这么低的分确实是不太留情面了。 > > 不过也别太在意,如果兄台以后不想在学术界,就这样吧,只要能顺利答辩通过就好。呵呵,能否将论文共享一下?是不是能上传到啄木鸟呢? > > > On 4/28/06, 吴俊玉 <wujunyu at gmail.com> wrote: > > > 老师倒是比较牛 > 只是他搞得是信息家电和嵌入式。 > > 他到没有直说 > 只是这一项满分10,他给了我4分 > 一般都是扣一两分的。 > > _______________________________________________ > 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 > > > > > -- > Robert > Python源码剖析——http://blog.donews.com/lemur/ > > _______________________________________________ > 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 > > -- 地址:广州市 江南大道中 穗花村 三巷12号204 邮编:510245 电话:020-39738561 020-39738571 传真:020-84476279 网站:www.i-fang.com 邮件:market at i-fang.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/7e8fb6c3/attachment-0001.htm
Zeuux © 2025
京ICP备05028076号