Python论坛  - 讨论区

标题:[python-chinese] 读excel的新问题:超过255行数据怎么办?

2007年11月05日 星期一 14:11

??? ?? clfff.peter在gmail.com
星期一 十一月 5 14:11:04 HKT 2007

²»ºÃÒâ˼£¬ÊÇrows²»ÊÇcolumns¡£
µ«ÊÇÕҷǿյĻ°£¬»¹ÊÇÓÐЩÎÊÌ⣬ÒòΪÓÐʱ¿ÉÄÜÄÄÒ»ÐоÍÊǿյģ¬µ«ÏÂÒ»ÐÐÓÖÓÐÊý¾Ý¡£ÄÇÔõô°ì£¿
µ«ÊÇ£¬Èç¹ûÓÃrowsÖµ£¬Ò»°ã¶¼ÉÏ65536£¬´¦ÀíÆðÀ´Ð§ÂÊ»áºÜµÍ¡£


ÔÚ07-10-30£¬Wei Jiang <jiejisheng在gmail.com> дµÀ£º
>
> ÕÒ×îºóÒ»¸ö·Ç¿Õ°É.
>
> On 10/30/07, cai whidbey <whidbeycai在gmail.com> wrote:
> >
> > ÁÐÊÇcol£¬ÐÐÊÇrow
> >
> > ÔÚ07-10-29£¬??? ?? <clfff.peter在gmail.com > дµÀ£º
> > >
> > >  ¶ÁexcelÖÐÒ»¸ösheetʱ£º
> > > xlApp = Dispatch("Excel.Application")
> > > xlApp.Visible = 0
> > > doc = self.xlApp.Workbooks.Open(xlsName)
> > > sheet = self.doc.Sheets(sheetName)
> > > col_num = len(self.sheet.Columns)
> > >
> > > ÎÒµÄÊý¾ÝÆäʵÓÐ600¶àÐУ¬µ«ÉÏÃæcol_numÖ»ÄÜ´ïµ½255£¬ÎªÊ²Ã´£¿
> > > ÓÐûÓÐʲô°ì·¨µÃµ½ÕæÕýµÄÊý¾Ýµ½µ×ÓжàÉÙ£¿
> > > лл¡£
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request在lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071105/1d2d0e21/attachment-0001.htm 

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

2007年11月09日 星期五 11:06

Wei Jiang jiejisheng在gmail.com
星期五 十一月 9 11:06:53 HKT 2007

Èç¹ûûÓйæÂɵĻ°£¬ºÜÄÑÅж¨ÄÇÐÐÊǸö½áβ¡£
£¨¼ÙÉèÒ»¸ö±íÖ»ÓÐ×îºóÒ»ÐÐÓÐÊý¾ÝµÄ»°¡£¡£¡££©

    def getRange(self, sheet, row1, col1, row2, col2):
        "return a 2d array (i.e. tuple of tuples)"
        sht = self.xBook.Worksheets(sheet)
        return sht.Range(sht.Cells(row1, col1), sht.Cells(row2, col2)).Value


On Nov 5, 2007 2:11 PM, ??? ?? <clfff.peter在gmail.com> wrote:

> ²»ºÃÒâ˼£¬ÊÇrows²»ÊÇcolumns¡£
> µ«ÊÇÕҷǿյĻ°£¬»¹ÊÇÓÐЩÎÊÌ⣬ÒòΪÓÐʱ¿ÉÄÜÄÄÒ»ÐоÍÊǿյģ¬µ«ÏÂÒ»ÐÐÓÖÓÐÊý¾Ý¡£ÄÇÔõô°ì£¿
> µ«ÊÇ£¬Èç¹ûÓÃrowsÖµ£¬Ò»°ã¶¼ÉÏ65536£¬´¦ÀíÆðÀ´Ð§ÂÊ»áºÜµÍ¡£
>
>
> ÔÚ07-10-30£¬Wei Jiang <jiejisheng在gmail.com> дµÀ£º
> >
> > ÕÒ×îºóÒ»¸ö·Ç¿Õ°É.
> >
> > On 10/30/07, cai whidbey <whidbeycai在gmail.com > wrote:
> > >
> > > ÁÐÊÇcol£¬ÐÐÊÇrow
> > >
> > > ÔÚ07-10-29£¬??? ?? <clfff.peter在gmail.com > дµÀ£º
> > > >
> > > >  ¶ÁexcelÖÐÒ»¸ösheetʱ£º
> > > > xlApp = Dispatch("Excel.Application")
> > > > xlApp.Visible = 0
> > > > doc = self.xlApp.Workbooks.Open(xlsName)
> > > > sheet = self.doc.Sheets(sheetName)
> > > > col_num = len(self.sheet.Columns)
> > > >
> > > > ÎÒµÄÊý¾ÝÆäʵÓÐ600¶àÐУ¬µ«ÉÏÃæcol_numÖ»ÄÜ´ïµ½255£¬ÎªÊ²Ã´£¿
> > > > ÓÐûÓÐʲô°ì·¨µÃµ½ÕæÕýµÄÊý¾Ýµ½µ×ÓжàÉÙ£¿
> > > > лл¡£
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese在lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > > > python-chinese-request在lists.python.cn
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > >
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to   python-chinese-request在lists.python.cn
> > >
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071109/ddaa2239/attachment.htm 

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

2007年11月09日 星期五 11:27

clfff.peter clfff.peter在gmail.com
星期五 十一月 9 11:27:46 HKT 2007

Õâ¸öÎÊÌâ»ù±¾ÉϽâ¾öÁË£¬ÎÒ¼Ù¶¨×îºóÒ»ÐеÄÌõ¼þÊÇ£º
     ÆäºóÁ¬ÐøÊ®ÐÐÈ«Êǿյġ£
ͨ³££¬ÕâÖÖ¼Ù¶¨ÊdzÉÁ¢µÄ£¬¶øÇÒÓû§¿ÉÒÔÐÞ¸ÄÕâÖÖÏÞÖÆ¡£


ÔÚ07-11-9£¬Wei Jiang <jiejisheng在gmail.com> дµÀ£º
>
> Èç¹ûûÓйæÂɵĻ°£¬ºÜÄÑÅж¨ÄÇÐÐÊǸö½áβ¡£
> £¨¼ÙÉèÒ»¸ö±íÖ»ÓÐ×îºóÒ»ÐÐÓÐÊý¾ÝµÄ»°¡£¡£¡££©
>
>     def getRange(self, sheet, row1, col1, row2, col2):
>         "return a 2d array (i.e. tuple of tuples)"
>         sht = self.xBook.Worksheets(sheet)
>         return sht.Range(sht.Cells(row1, col1), sht.Cells(row2,
> col2)).Value
>
>
> On Nov 5, 2007 2:11 PM, ??? ?? <clfff.peter在gmail.com> wrote:
>
> > ²»ºÃÒâ˼£¬ÊÇrows²»ÊÇcolumns¡£
> > µ«ÊÇÕҷǿյĻ°£¬»¹ÊÇÓÐЩÎÊÌ⣬ÒòΪÓÐʱ¿ÉÄÜÄÄÒ»ÐоÍÊǿյģ¬µ«ÏÂÒ»ÐÐÓÖÓÐÊý¾Ý¡£ÄÇÔõô°ì£¿
> > µ«ÊÇ£¬Èç¹ûÓÃrowsÖµ£¬Ò»°ã¶¼ÉÏ65536£¬´¦ÀíÆðÀ´Ð§ÂÊ»áºÜµÍ¡£
> >
> >
> > ÔÚ07-10-30£¬Wei Jiang <jiejisheng在gmail.com> дµÀ£º
> > >
> > > ÕÒ×îºóÒ»¸ö·Ç¿Õ°É.
> > >
> > > On 10/30/07, cai whidbey <whidbeycai在gmail.com > wrote:
> > > >
> > > > ÁÐÊÇcol£¬ÐÐÊÇrow
> > > >
> > > > ÔÚ07-10-29£¬??? ?? <clfff.peter在gmail.com > дµÀ£º
> > > > >
> > > > >  ¶ÁexcelÖÐÒ»¸ösheetʱ£º
> > > > > xlApp = Dispatch("Excel.Application")
> > > > > xlApp.Visible = 0
> > > > > doc = self.xlApp.Workbooks.Open(xlsName)
> > > > > sheet = self.doc.Sheets(sheetName)
> > > > > col_num = len(self.sheet.Columns)
> > > > >
> > > > > ÎÒµÄÊý¾ÝÆäʵÓÐ600¶àÐУ¬µ«ÉÏÃæcol_numÖ»ÄÜ´ïµ½255£¬ÎªÊ²Ã´£¿
> > > > > ÓÐûÓÐʲô°ì·¨µÃµ½ÕæÕýµÄÊý¾Ýµ½µ×ÓжàÉÙ£¿
> > > > > лл¡£
> > > > >
> > > > > _______________________________________________
> > > > > python-chinese
> > > > > Post: send python-chinese在lists.python.cn
> > > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > >
> > > > > Unsubscribe: send unsubscribe to
> > > > > python-chinese-request在lists.python.cn
> > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese在lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > Unsubscribe: send unsubscribe to   python-chinese-request在lists.python.cn
> > > >
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > >
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request在lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071109/8ae844b9/attachment.htm 

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

2007年11月13日 星期二 15:27

Liu Ian lpvips在gmail.com
星期二 十一月 13 15:27:24 HKT 2007

×î¼òµ¥µÄ°ì·¨¾ÍÊǼÓÉÏÒ»¸ö±ß½ç·ûºÅ

ÔÚ07-11-9£¬clfff. peter <clfff.peter在gmail.com> дµÀ£º
>
> Õâ¸öÎÊÌâ»ù±¾ÉϽâ¾öÁË£¬ÎÒ¼Ù¶¨×îºóÒ»ÐеÄÌõ¼þÊÇ£º
>      ÆäºóÁ¬ÐøÊ®ÐÐÈ«Êǿյġ£
> ͨ³££¬ÕâÖÖ¼Ù¶¨ÊdzÉÁ¢µÄ£¬¶øÇÒÓû§¿ÉÒÔÐÞ¸ÄÕâÖÖÏÞÖÆ¡£
>
>
> ÔÚ07-11-9£¬Wei Jiang <jiejisheng在gmail.com> дµÀ£º
> >
> > Èç¹ûûÓйæÂɵĻ°£¬ºÜÄÑÅж¨ÄÇÐÐÊǸö½áβ¡£
> > £¨¼ÙÉèÒ»¸ö±íÖ»ÓÐ×îºóÒ»ÐÐÓÐÊý¾ÝµÄ»°¡£¡£¡££©
> >
> >     def getRange(self, sheet, row1, col1, row2, col2):
> >         "return a 2d array (i.e. tuple of tuples)"
> >         sht = self.xBook.Worksheets(sheet)
> >         return sht.Range(sht.Cells(row1, col1), sht.Cells(row2,
> > col2)).Value
> >
> >
> > On Nov 5, 2007 2:11 PM, ??? ?? <clfff.peter在gmail.com> wrote:
> >
> > > ²»ºÃÒâ˼£¬ÊÇrows²»ÊÇcolumns¡£
> > > µ«ÊÇÕҷǿյĻ°£¬»¹ÊÇÓÐЩÎÊÌ⣬ÒòΪÓÐʱ¿ÉÄÜÄÄÒ»ÐоÍÊǿյģ¬µ«ÏÂÒ»ÐÐÓÖÓÐÊý¾Ý¡£ÄÇÔõô°ì£¿
> > > µ«ÊÇ£¬Èç¹ûÓÃrowsÖµ£¬Ò»°ã¶¼ÉÏ65536£¬´¦ÀíÆðÀ´Ð§ÂÊ»áºÜµÍ¡£
> > >
> > >
> > > ÔÚ07-10-30£¬Wei Jiang <jiejisheng在gmail.com > дµÀ£º
> > > >
> > > > ÕÒ×îºóÒ»¸ö·Ç¿Õ°É.
> > > >
> > > > On 10/30/07, cai whidbey <whidbeycai在gmail.com > wrote:
> > > > >
> > > > > ÁÐÊÇcol£¬ÐÐÊÇrow
> > > > >
> > > > > ÔÚ07-10-29£¬??? ?? <clfff.peter在gmail.com > дµÀ£º
> > > > > >
> > > > > >  ¶ÁexcelÖÐÒ»¸ösheetʱ£º
> > > > > > xlApp = Dispatch("Excel.Application")
> > > > > > xlApp.Visible = 0
> > > > > > doc = self.xlApp.Workbooks.Open(xlsName)
> > > > > > sheet = self.doc.Sheets(sheetName)
> > > > > > col_num = len(self.sheet.Columns)
> > > > > >
> > > > > > ÎÒµÄÊý¾ÝÆäʵÓÐ600¶àÐУ¬µ«ÉÏÃæcol_numÖ»ÄÜ´ïµ½255£¬ÎªÊ²Ã´£¿
> > > > > > ÓÐûÓÐʲô°ì·¨µÃµ½ÕæÕýµÄÊý¾Ýµ½µ×ÓжàÉÙ£¿
> > > > > > лл¡£
> > > > > >
> > > > > > _______________________________________________
> > > > > > python-chinese
> > > > > > Post: send python-chinese在lists.python.cn
> > > > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > > >
> > > > > > Unsubscribe: send unsubscribe to
> > > > > > python-chinese-request在lists.python.cn
> > > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > > > >
> > > > >
> > > > >
> > > > > _______________________________________________
> > > > > python-chinese
> > > > > Post: send python-chinese在lists.python.cn
> > > > > Subscribe: send subscribe to
> > > > > python-chinese-request在lists.python.cn
> > > > > Unsubscribe: send unsubscribe to   python-chinese-request在lists.python.cn
> > > > >
> > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese在lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > > > python-chinese-request在lists.python.cn
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > >
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request在lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> >
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071113/65873bc1/attachment.htm 

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

2007年11月14日 星期三 18:57

clfff.peter clfff.peter在gmail.com
星期三 十一月 14 18:57:51 HKT 2007

×ÜÖ®excel±¾ÉíÊÇûÓÐÕâÖֽӿڵģ¬¶¼Òª×Ô¼ºÅжϡ£
Ó¦¸ÃËã¸öbug°É¡£hehe


ÔÚ07-11-13£¬Liu Ian <lpvips在gmail.com> дµÀ£º
>
> ×î¼òµ¥µÄ°ì·¨¾ÍÊǼÓÉÏÒ»¸ö±ß½ç·ûºÅ
>
> ÔÚ07-11-9£¬clfff. peter <clfff.peter在gmail.com> дµÀ£º
> >
> > Õâ¸öÎÊÌâ»ù±¾ÉϽâ¾öÁË£¬ÎÒ¼Ù¶¨×îºóÒ»ÐеÄÌõ¼þÊÇ£º
> >      ÆäºóÁ¬ÐøÊ®ÐÐÈ«Êǿյġ£
> > ͨ³££¬ÕâÖÖ¼Ù¶¨ÊdzÉÁ¢µÄ£¬¶øÇÒÓû§¿ÉÒÔÐÞ¸ÄÕâÖÖÏÞÖÆ¡£
> >
> >
> > ÔÚ07-11-9£¬Wei Jiang <jiejisheng在gmail.com> дµÀ£º
> > >
> > > Èç¹ûûÓйæÂɵĻ°£¬ºÜÄÑÅж¨ÄÇÐÐÊǸö½áβ¡£
> > > £¨¼ÙÉèÒ»¸ö±íÖ»ÓÐ×îºóÒ»ÐÐÓÐÊý¾ÝµÄ»°¡£¡£¡££©
> > >
> > >     def getRange(self, sheet, row1, col1, row2, col2):
> > >         "return a 2d array (i.e. tuple of tuples)"
> > >         sht = self.xBook.Worksheets(sheet)
> > >         return sht.Range(sht.Cells(row1, col1), sht.Cells(row2,
> > > col2)).Value
> > >
> > >
> > > On Nov 5, 2007 2:11 PM, ??? ?? <clfff.peter在gmail.com> wrote:
> > >
> > > > ²»ºÃÒâ˼£¬ÊÇrows²»ÊÇcolumns¡£
> > > > µ«ÊÇÕҷǿյĻ°£¬»¹ÊÇÓÐЩÎÊÌ⣬ÒòΪÓÐʱ¿ÉÄÜÄÄÒ»ÐоÍÊǿյģ¬µ«ÏÂÒ»ÐÐÓÖÓÐÊý¾Ý¡£ÄÇÔõô°ì£¿
> > > > µ«ÊÇ£¬Èç¹ûÓÃrowsÖµ£¬Ò»°ã¶¼ÉÏ65536£¬´¦ÀíÆðÀ´Ð§ÂÊ»áºÜµÍ¡£
> > > >
> > > >
> > > > ÔÚ07-10-30£¬Wei Jiang <jiejisheng在gmail.com > дµÀ£º
> > > > >
> > > > > ÕÒ×îºóÒ»¸ö·Ç¿Õ°É.
> > > > >
> > > > > On 10/30/07, cai whidbey <whidbeycai在gmail.com > wrote:
> > > > > >
> > > > > > ÁÐÊÇcol£¬ÐÐÊÇrow
> > > > > >
> > > > > > ÔÚ07-10-29£¬??? ?? <clfff.peter在gmail.com > дµÀ£º
> > > > > > >
> > > > > > >  ¶ÁexcelÖÐÒ»¸ösheetʱ£º
> > > > > > > xlApp = Dispatch("Excel.Application")
> > > > > > > xlApp.Visible = 0
> > > > > > > doc = self.xlApp.Workbooks.Open(xlsName)
> > > > > > > sheet = self.doc.Sheets(sheetName)
> > > > > > > col_num = len(self.sheet.Columns)
> > > > > > >
> > > > > > > ÎÒµÄÊý¾ÝÆäʵÓÐ600¶àÐУ¬µ«ÉÏÃæcol_numÖ»ÄÜ´ïµ½255£¬ÎªÊ²Ã´£¿
> > > > > > > ÓÐûÓÐʲô°ì·¨µÃµ½ÕæÕýµÄÊý¾Ýµ½µ×ÓжàÉÙ£¿
> > > > > > > лл¡£
> > > > > > >
> > > > > > > _______________________________________________
> > > > > > > python-chinese
> > > > > > > Post: send python-chinese在lists.python.cn
> > > > > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > > > >
> > > > > > > Unsubscribe: send unsubscribe to
> > > > > > > python-chinese-request在lists.python.cn
> > > > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > > > > >
> > > > > >
> > > > > >
> > > > > > _______________________________________________
> > > > > > python-chinese
> > > > > > Post: send python-chinese在lists.python.cn
> > > > > > Subscribe: send subscribe to
> > > > > > python-chinese-request在lists.python.cn
> > > > > > Unsubscribe: send unsubscribe to   python-chinese-request在lists.python.cn
> > > > > >
> > > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > > > >
> > > > >
> > > > >
> > > > > _______________________________________________
> > > > > python-chinese
> > > > > Post: send python-chinese在lists.python.cn
> > > > > Subscribe: send subscribe to
> > > > > python-chinese-request在lists.python.cn
> > > > > Unsubscribe: send unsubscribe to
> > > > > python-chinese-request在lists.python.cn
> > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese在lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > > > python-chinese-request在lists.python.cn
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > >
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > >
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071114/7183ff42/attachment.html 

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号