2006年04月08日 星期六 09:39
这个问题,我是在做DOM的时候发现的,我用的是PyXML-0.8.4, 代码如下: from xml.dom.ext.reader import HtmlLib doc = HtmlLib.FromHtmlUrl('http://stock.business.sohu.com/q/nbcg.php?code=600028') title_elem = doc.documentElement.getElementsByTagName("TITLE")[0] title_string = title_elem.firstChild.data print title_string # title_string 的内容就是s的内容,属于ygao所说的情况 ----- Original Message ----- From: ygao To: python-chinese at lists.python.cn Sent: Friday, April 07, 2006 10:34 PM Subject: Re: [python-chinese] 一个编码问题? 这个问题非常有趣,把一段数据流错误地弄成UNICODE。但数据流的值却是正常的。 我们要还原:以下的过程有一个技巧。 >>> import re >>> uni= re.compile(r"u'(.*?)'") >>> d=repr(s) >>> dd=uni.match(d) >>> cc=dd.group(1) >>> cc '\\xd6\\xd0\\xb9\\xfa\\xca\\xaf\\xbb\\xaf(600028) : \\xc4\\xda\\xb2\\xbf\\xc8\\xcb\\xd4\\xb1\\xb3\\xd6\\xb9\\xc9 - \\xcb\\xd1\\xba\\xfc\\xb9\\xc9\\xc6\\xb1' >>> print cc.decode("string-escape").decode("gb2312") 中国石化(600028) : 内部人员持股 - 搜狐股票 >>> print cc.decode("string-escape").decode("gb18030") 中国石化(600028) : 内部人员持股 - 搜狐股票 >>> On 4/7/06, 员旭鹏 <recordus at gmail.com> wrote: 同样期待有人能给出解决方法 2006/4/7, Steven Wang (:) <zdwang at xinces.com>: s的内容是:中国石化(600028) : 内部人员持股 - 搜狐股票----- Original Message ----- From: ygao To: python-chinese at lists.python.cn Sent: Friday, April 07, 2006 6:43 PM Subject: Re: [python-chinese] 一个编码问题? 是如下的中文吗? 脰脨鹿煤脢炉禄炉(600028) : 脛脷虏驴脠脣脭卤鲁脰鹿脡 - 脣脩潞眉鹿脡脝卤 On 4/7/06, alcides yolan <xyolan at gmail.com> wrote: 持续关注,在用asp和php开发中遇到不少字符编码的问题,不知道python如何解决? On 4/7/06, Steven Wang (:) < zdwang at xinces.com> wrote: 在解析XML文档的时候,得到s 的值如下,请问如何正确的,显示出中文?他标示的是Unicode,但是实际的内容确实gbk,请问该怎么办? s = u'\xd6\xd0\xb9\xfa\xca\xaf\xbb\xaf(600028) : \xc4\xda\xb2\xbf\xc8\xcb\xd4\xb1\xb3\xd6\xb9\xc9 - \xcb\xd1\xba\xfc\xb9\xc9\xc6\xb1' _______________________________________________ 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 -- ※※※※※※※※※※※※※※※※※※※※※※※※ My blog: http://blog.donews.com/ygao Forum http://groups.google.com/group/python_study ※※※※※※※※※※※※※※※※※※※※※※※※ -------------------------------------------------------------------------- _______________________________________________ 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 -- I like Python & Linux. _______________________________________________ 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://blog.donews.com/ygao Forum http://groups.google.com/group/python_study ※※※※※※※※※※※※※※※※※※※※※※※※ ------------------------------------------------------------------------------ _______________________________________________ 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/20060408/0354cf2d/attachment-0001.htm
2006年04月08日 星期六 10:10
Õâ¸öºÃ£¬µÚÒ»´Î¼û On 4/7/06, ygao <ygao2004 at gmail.com> wrote: > > Õâ¸öÎÊÌâ·Ç³£ÓÐȤ£¬°ÑÒ»¶ÎÊý¾ÝÁ÷´íÎóµØŪ³ÉUNICODE¡£µ«Êý¾ÝÁ÷µÄֵȴÊÇÕý³£µÄ¡£ > ÎÒÃÇÒª»¹Ô£ºÒÔϵĹý³ÌÓÐÒ»¸ö¼¼ÇÉ¡£ > > >>> import re > >>> uni= re.compile(r"u'(.*?)'") > >>> d=repr(s) > >>> dd=uni.match(d) > >>> cc=dd.group(1) > >>> cc > '\\xd6\\xd0\\xb9\\xfa\\xca\\xaf\\xbb\\xaf(600028) : \\xc4\\xda\\xb2\\xbf\\xc8\\xcb\\xd4\\xb1\\xb3\\xd6\\xb9\\xc9 > - \\xcb\\xd1\\xba\\xfc\\xb9\\xc9\\xc6\\xb1' > >>> print cc.decode("string-escape").decode("gb2312") > Öйúʯ»¯(600028) : ÄÚ²¿ÈËÔ±³Ö¹É - ËѺü¹ÉƱ > >>> print cc.decode("string-escape").decode("gb18030") > Öйúʯ»¯(600028) : ÄÚ²¿ÈËÔ±³Ö¹É - ËѺü¹ÉƱ > >>> > > > > On 4/7/06, Ô±ÐñÅô <recordus at gmail.com> wrote: > > > ͬÑùÆÚ´ýÓÐÈËÄܸø³ö½â¾ö·½·¨ > > > > 2006/4/7, Steven Wang £¨£º£© <zdwang at xinces.com>: > > > > > sµÄÄÚÈÝÊÇ£ºÖйúʯ»¯(600028) : ÄÚ²¿ÈËÔ±³Ö¹É - ËѺü¹ÉƱ > > > > > > ----- Original Message ----- > > > *From:* ygao <ygao2004 at gmail.com> > > > *To:* python-chinese at lists.python.cn > > > *Sent:* Friday, April 07, 2006 6:43 PM > > > *Subject:* Re: [python-chinese] Ò»¸ö±àÂëÎÊÌ⣿ > > > > > > > > > ÊÇÈçϵÄÖÐÎÄÂ𣿠> > > > > > Ãùúﻯ(600028) : Ãò¿ÃÃñ³Ã¹à - Ãúü¹Ãñ > > > > > > On 4/7/06, alcides yolan <xyolan at gmail.com> wrote: > > > > > > > > ³ÖÐø¹Ø×¢£¬ÔÚÓÃaspºÍphp¿ª·¢ÖÐÓöµ½²»ÉÙ×Ö·û±àÂëµÄÎÊÌ⣬²»ÖªµÀpythonÈçºÎ½â¾ö£¿ > > > > > > > > On 4/7/06, Steven Wang £¨£º£© < zdwang at xinces.com> wrote: > > > > > > > > > ÔÚ½âÎöXMLÎĵµµÄʱºò£¬µÃµ½s > > > > µÄÖµÈçÏ£¬ÇëÎÊÈçºÎÕýÈ·µÄ£¬ÏÔʾ³öÖÐÎÄ£¿Ëû±êʾµÄÊÇUnicode,µ«ÊÇʵ¼ÊµÄÄÚÈÝȷʵgbk,ÇëÎʸÃÔõô°ì£¿ > > > > > > > > s = u'\xd6\xd0\xb9\xfa\xca\xaf\xbb\xaf(600028) : > > > > \xc4\xda\xb2\xbf\xc8\xcb\xd4\xb1\xb3\xd6\xb9\xc9 - > > > > \xcb\xd1\xba\xfc\xb9\xc9\xc6\xb1' > > > > > > > > > > > > > > > > _______________________________________________ > > > > 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 > > > > > > > > > > > > > > > > > -- > > > ¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù > > > My blog: http://blog.donews.com/ygao > > > Forum http://groups.google.com/group/python_study > > > ¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù > > > > > > ------------------------------ > > > > > > _______________________________________________ > > > 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 > > > > > > > > > > > > -- > > I like Python & Linux. > > > > _______________________________________________ > > 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://blog.donews.com/ygao > Forum http://groups.google.com/group/python_study > ¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù¡ù > > _______________________________________________ > 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/20060408/18e5c534/attachment.htm
2006年04月10日 星期一 09:53
我以前试过,可以用 OOo2 生成,但是不能生成 PDF 的 BookMarks 页 2006/4/8, icebird <icebirds at gmail.com>: > > 试过用openoffice生成吗? > 在 06-4-7,Liang Osmond<sinosmond at gmail.com> 写道: > > 由于原作者使用的生成 PDF 的工具 HTMLDoc 目前还不支持中文, > > 又由于使用了python 代码着色,所以直接使用 FOP 生成 PDF 将无法实现 Python 着色。 > > 因此,目前直接生成 PDF 文件还有困难,希望大家一同努力,找出解决方案。 > > > > > > 在06-4-7,笨笨狗 <chen.ruijie at gmail.com> 写道: > > > > > > > > > 没有PDF版本吗? > > > > > > -- > > > 云电清华同方小民工 > > > _______________________________________________ > > > 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 > > > > > > > > > > > > > > -- > > > > ========================== > > [osmond http://osmond.cn] > > [osmond sinosmond at gmail.com] > > [osmond sinosmond at hotmail.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 > > -- ========================== [osmond http://osmond.cn] [osmond sinosmond at gmail.com] [osmond sinosmond at hotmail.com] -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/11275d02/attachment.htm
2006年04月10日 星期一 10:32
On 4/10/06, Liang Osmond <sinosmond at gmail.com> wrote: > 我以前试过,可以用 OOo2 生成,但是不能生成 PDF 的 BookMarks 页 > 我已经用OOo生成过了,可以生成书签,我的系统是ubuntu dapper flight6,OOo 2.0.2.本来我想把转换后的pdf发出来的,可是邮件列表不允许.
2006年04月10日 星期一 10:45
请问怎么用OOo生成书签的呢? 我也是用的ubuntu dapper flight6啊,没有找到生成书签的选项在哪里啊。 在06-4-10,志骋 <karronqiu at gmail.com> 写道: > > 我已经用OOo生成过了,可以生成书签,我的系统是ubuntu dapper flight6,OOo > 2.0.2.本来我想把转换后的pdf发出来的,可是邮件列表不允许. > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/5a16e258/attachment.htm
2006年04月10日 星期一 10:55
On 4/10/06, 员旭鹏 <recordus at gmail.com> wrote: > 请问怎么用OOo生成书签的呢? > 我也是用的ubuntu dapper flight6啊,没有找到生成书签的选项在哪里啊。 > 我没有修改或者设置什么,就直接export为pdf就有了,文中的链接也可以跳转.
2006年04月10日 星期一 11:13
我也是直接生成的啊, 可是我生成的pdf链接可以跳转,但是没有书签啊, 在06-4-10,志骋 <karronqiu at gmail.com> 写道: > > On 4/10/06, 员旭鹏 <recordus at gmail.com> wrote: > > 请问怎么用OOo生成书签的呢? > > 我也是用的ubuntu dapper flight6啊,没有找到生成书签的选项在哪里啊。 > > > > 我没有修改或者设置什么,就直接export为pdf就有了,文中的链接也可以跳转. > > _______________________________________________ > 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 > > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/dd04f626/attachment-0001.html
2006年04月10日 星期一 11:26
On 4/10/06, 员旭鹏 <recordus at gmail.com> wrote: > 我也是直接生成的啊, > 可是我生成的pdf链接可以跳转,但是没有书签啊, > 不清楚,你可以下载我生成的pdf,看看是不是和你的一样,我也是第一次用OOo来生成pdf.
2006年04月10日 星期一 11:29
好啊,我去哪里下呢?要不你发给我吧。 在06-4-10,志骋 <karronqiu at gmail.com> 写道: > > On 4/10/06, 员旭鹏 <recordus at gmail.com> wrote: > > 我也是直接生成的啊, > > 可是我生成的pdf链接可以跳转,但是没有书签啊, > > > > 不清楚,你可以下载我生成的pdf,看看是不是和你的一样,我也是第一次用OOo来生成pdf. > > _______________________________________________ > 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 > > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/a27a008f/attachment.htm
2006年04月10日 星期一 11:29
An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/137cd919/attachment.html
2006年04月10日 星期一 11:39
呵呵,还是那个圆体了,生成以后默认就是这个样子 在06-4-10,Gonefish <gonefish at gmail.com> 写道: > > On 4/10/06, 员旭鹏 <recordus at gmail.com> <recordus at gmail.com> wrote: > > 请问怎么用OOo生成书签的呢? > 我也是用的ubuntu dapper flight6啊,没有找到生成书签的选项在哪里啊。 > > 我没有修改或者设置什么,就直接export为pdf就有了,文中的链接也可以跳转. > > 字体看了很舒服! > > _______________________________________________ > 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 > > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/c1ae5ba8/attachment.htm
2006年04月10日 星期一 13:03
2006/4/10, 员旭鹏 recordus at gmail.com: > > > 字体看了很舒服! > > 请问哪有PDF的下载? -- 云电清华同方小民工 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/616c3f99/attachment.html
2006年04月10日 星期一 13:08
On 4/10/06, 员旭鹏 <recordus at gmail.com> wrote: > 呵呵,还是那个圆体了,生成以后默认就是这个样子 应该是黑体,我系统的字体是方正黑体,生成pdf的时候也应该是.不过我的系统中也有园体.
2006年04月10日 星期一 13:15
自己用OOo生成的,呵呵 在06-4-10,笨笨狗 <chen.ruijie at gmail.com> 写道: > > 请问哪有PDF的下载? > > -- > 云电清华同方小民工 > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/4119dc57/attachment.html
2006年04月10日 星期一 18:39
想问一下那里可以下载pdf版本的呀 我比较顷象与pdf格式的,看起来很爽 -- /********************************************************** * Love in Gentoo-Linux C and Python * Look at my website and my blog * http://www.jnlinux.org * http://bbs.jnlinux.org **********************************************************/
2006年04月10日 星期一 19:45
没有空间放,谁要是要的话我把转换过了的发一份到邮箱吧。 在06-4-10,prolibertine <prolibertine at gmail.com> 写道: > > 想问一下那里可以下载pdf版本的呀 > 我比较顷象与pdf格式的,看起来很爽 > > -- > /********************************************************** > * Love in Gentoo-Linux C and Python > * Look at my website and my blog > * http://www.jnlinux.org > * http://bbs.jnlinux.org > **********************************************************/ > > _______________________________________________ > 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 > > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060410/d80c7a3a/attachment.html
2006年04月11日 星期二 08:43
感谢翻译,请给我也发一份。 2006/4/10, 员旭鹏 <recordus at gmail.com>: > > 没有空间放,谁要是要的话我把转换过了的发一份到邮箱吧。 > > 在06-4-10,prolibertine <prolibertine at gmail.com> 写道: > > > > 想问一下那里可以下载pdf版本的呀 > 我比较顷象与pdf格式的,看起来很爽 > > -- > /********************************************************** > * Love in Gentoo-Linux C and Python > * Look at my website and my blog > * http://www.jnlinux.org > * http://bbs.jnlinux.org > **********************************************************/ > > _______________________________________________ > 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 > > > > > -- > I like Python & Linux. > > _______________________________________________ > 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/20060411/5aba8753/attachment.html
2006年04月11日 星期二 11:27
2006/4/10, 员旭鹏 <recordus at gmail.com>: > 没有空间放,谁要是要的话我把转换过了的发一份到邮箱吧。 > 到 http://www.5u6.net/ 注册一个网络U盘,上传共享即可 -- 云电清华同方小民工
2006年04月11日 星期二 13:31
我刚才试了一下,可能是我这里速度太慢的缘故,总是超时,传不上去啊, 要不我发给你一份,你给传上去吧,谢啦:) 在06-4-11,笨笨狗 <chen.ruijie at gmail.com> 写道: > > 2006/4/10, 员旭鹏 <recordus at gmail.com>: > > 没有空间放,谁要是要的话我把转换过了的发一份到邮箱吧。 > > > > 到 http://www.5u6.net/ 注册一个网络U盘,上传共享即可 > -- I like Python & Linux. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060411/4a740744/attachment.html
2006年04月11日 星期二 16:23
用openoffice 转了一个PDF,自动生成了书签,放在http://lit40.5u6.net ,文件名为diveintopython_zhcn_pdf.zip 有需要的可以去下。 tips:转pdf时,选中"tagged PDF",就有书签了。 PS:用的openoffice是portable_openoffice_2.0.2_en-us ,字体换成宋体了。 On 4/11/06, 员旭鹏 <recordus at gmail.com> wrote: > > 我刚才试了一下,可能是我这里速度太慢的缘故,总是超时,传不上去啊, > 要不我发给你一份,你给传上去吧,谢啦:) > > 在06-4-11,笨笨狗 <chen.ruijie at gmail.com> 写道: > > > 2006/4/10, 员旭鹏 <recordus at gmail.com>: > > > 没有空间放,谁要是要的话我把转换过了的发一份到邮箱吧。 > > > > > > > 到 http://www.5u6.net/ 注册一个网络U盘,上传共享即可 > > > > > > -- > I like Python & Linux. > _______________________________________________ > 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 > >
Zeuux © 2025
京ICP备05028076号