Python论坛  - 讨论区

标题:[python-chinese] 什么是引用什么是赋值?

2007年09月26日 星期三 18:18

Brightman mr.brightman在gmail.com
星期三 九月 26 18:18:05 HKT 2007

 ¿ÉÄÜÃèÊöµÄ²»ÊǺÜÇå³þ¡£¼ûÈçÏ£º
>>> dict1={}
>>> dict1[1]=([1],1)
>>> (a,b)=dict1[1]
>>> a
[1]
>>> a.append(2)
>>> a.append(3)
>>> a.append(4)
>>> a.append(5)
>>> a
[1, 2, 3, 4, 5]
>>> a=[]
>>> a
[]
Õâ¸öûÓÐÐ޸ĵ½Ô­À´µÄ¶ÔÏó
>>> len(a)
0
>>> (a,b)=dict1[1]
>>> a
[1, 2, 3, 4, 5]
ËãÊÇC++ÖеÄÒýÓðÉ

¿ÉÄÜpythonûÓÐÒýÓÃÔ­ÓжÔÏóµÄ¸ÅÄֻÊÇappendÕâ¸öº¯ÊýÐÞ¸ÄÁËÔ­ÓжÔÏó or ?
thanks
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070926/cee903f1/attachment.htm 

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

2007年09月26日 星期三 18:49

junyi sun ccnusjy在gmail.com
星期三 九月 26 18:49:16 HKT 2007

 >>> a=[]
¸ÄΪa[:]=[]
Ó¦¸Ã¾Í¿ÉÒÔÓ°Ïìµ½dict1ÖеÄÊý¾ÝÁË

On 9/26/07, Brightman <mr.brightman在gmail.com> wrote:
>
>      ¿ÉÄÜÃèÊöµÄ²»ÊǺÜÇå³þ¡£¼ûÈçÏ£º
> >>> dict1={}
> >>> dict1[1]=([1],1)
> >>> (a,b)=dict1[1]
> >>> a
> [1]
> >>> a.append(2)
> >>> a.append(3)
> >>> a.append(4)
> >>> a.append(5)
> >>> a
> [1, 2, 3, 4, 5]
> >>> a=[]
> >>> a
> []
> Õâ¸öûÓÐÐ޸ĵ½Ô­À´µÄ¶ÔÏó
> >>> len(a)
> 0
> >>> (a,b)=dict1[1]
> >>> a
> [1, 2, 3, 4, 5]
> ËãÊÇC++ÖеÄÒýÓðÉ
>
> ¿ÉÄÜpythonûÓÐÒýÓÃÔ­ÓжÔÏóµÄ¸ÅÄֻÊÇappendÕâ¸öº¯ÊýÐÞ¸ÄÁËÔ­ÓжÔÏó or ?
> thanks
>
> _______________________________________________
> 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/20070926/24c29c10/attachment.htm 

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

2007年09月26日 星期三 18:53

jessinio liang jessinio在gmail.com
星期三 九月 26 18:53:44 HKT 2007

>>> a=[]
ɾÁËÔ­À´µÄ,µÈÓÚÇå¿Õ.
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070926/72f95fa8/attachment.html 

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

2007年09月26日 星期三 19:09

Brightman mr.brightman在gmail.com
星期三 九月 26 19:09:21 HKT 2007

>>> a[:]=[]
>>> a
[]
>>> (a,b)=dict1[1]
>>> a
[1]

以及何时影响 何时不影响的准则?谢谢
junyi sun 写道:
> >>> a=[]
> 改为a[:]=[]
> 应该就可以影响到dict1中的数据了
>
> On 9/26/07, *Brightman* <mr.brightman在gmail.com
> mr.brightman在gmail.com> > wrote:
>
>     可能描述的不是很清楚。见如下:
>     >>> dict1={}
>     >>> dict1[1]=([1],1)
>     >>> (a,b)=dict1[1]
>     >>> a
>     [1]
>     >>> a.append(2)
>     >>> a.append(3)
>     >>> a.append(4)
>     >>> a.append(5)
>     >>> a
>     [1, 2, 3, 4, 5]
>     >>> a=[]
>     >>> a
>     []
>     这个没有修改到原来的对象
>     >>> len(a)
>     0
>     >>> (a,b)=dict1[1]
>     >>> a
>     [1, 2, 3, 4, 5]
>     算是C++中的引用吧
>
>     可能python没有引用原有对象的概念,只是append这个函数修改了原有对象
>     or ?
>     thanks
>
>     _______________________________________________
>     python-chinese
>     Post: send python-chinese在lists.python.cn
>     python-chinese在lists.python.cn>
>     Subscribe: send subscribe to
>     python-chinese-request在lists.python.cn
>     python-chinese-request在lists.python.cn>
>     Unsubscribe: send unsubscribe to
>     python-chinese-request在lists.python.cn
>     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


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

2007年09月26日 星期三 19:12

Shao Feng sevenever在gmail.com
星期三 九月 26 19:12:16 HKT 2007

a=[]
之后a就引用这个空的list,不引用原来那个5个元素的list了吧

(a,b)=dict1[1]
的时候a又指回来5个元素的list了。

On 9/26/07, jessinio liang <jessinio在gmail.com> wrote:
>
> >>> a=[]
> 删了原来的,等于清空.
>
>
>
> _______________________________________________
> 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/20070926/98233787/attachment.htm 

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

2007年09月26日 星期三 19:15

junyi sun ccnusjy在gmail.com
星期三 九月 26 19:15:52 HKT 2007

ÎÒÊÇÕâÑùÀí½âµÄ£¬a=[]£¬aÏ൱ÓÚÒ»¸öÖ¸Õ룬Õâ¾ä»°Ö»ÊÇÓ°ÏìÖ¸Õë±¾Éí
¶øa[:]=[]»òa[2]='xxx'ÕâÑùµÄÓï¾ä¾Í»áÓ°ÏìËüËùÖ¸ÏòµÄÊý¾Ý¡£

ÏÂÃæÊÇÒ»¸ö¼ò»¯µÄÀý×Ó£º

>>> a=[1,2,3]
>>> b=a
>>> b=[]
>>> b
[]
>>> a
[1, 2, 3]
>>> b=a
>>> b[1]='hack'
>>> b
[1, 'hack', 3]
>>> a
[1, 'hack', 3]
>>>



On 9/26/07, Brightman <mr.brightman在gmail.com> wrote:
>
> >>> a[:]=[]
> >>> a
> []
> >>> (a,b)=dict1[1]
> >>> a
> [1]
>
> ÒÔ¼°ºÎʱӰÏì ºÎʱ²»Ó°ÏìµÄ×¼Ôò£¿Ð»Ð»
> junyi sun дµÀ:
> > >>> a=[]
> > ¸ÄΪa[:]=[]
> > Ó¦¸Ã¾Í¿ÉÒÔÓ°Ïìµ½dict1ÖеÄÊý¾ÝÁË
> >
> > On 9/26/07, *Brightman* <mr.brightman在gmail.com
> > mr.brightman在gmail.com> > wrote:
> >
> >     ¿ÉÄÜÃèÊöµÄ²»ÊǺÜÇå³þ¡£¼ûÈçÏ£º
> >     >>> dict1={}
> >     >>> dict1[1]=([1],1)
> >     >>> (a,b)=dict1[1]
> >     >>> a
> >     [1]
> >     >>> a.append(2)
> >     >>> a.append(3)
> >     >>> a.append(4)
> >     >>> a.append(5)
> >     >>> a
> >     [1, 2, 3, 4, 5]
> >     >>> a=[]
> >     >>> a
> >     []
> >     Õâ¸öûÓÐÐ޸ĵ½Ô­À´µÄ¶ÔÏó
> >     >>> len(a)
> >     0
> >     >>> (a,b)=dict1[1]
> >     >>> a
> >     [1, 2, 3, 4, 5]
> >     ËãÊÇC++ÖеÄÒýÓðÉ
> >
> >     ¿ÉÄÜpythonûÓÐÒýÓÃÔ­ÓжÔÏóµÄ¸ÅÄֻÊÇappendÕâ¸öº¯ÊýÐÞ¸ÄÁËÔ­ÓжÔÏó
> >     or ?
> >     thanks
> >
> >     _______________________________________________
> >     python-chinese
> >     Post: send python-chinese在lists.python.cn
> >     python-chinese在lists.python.cn>
> >     Subscribe: send subscribe to
> >     python-chinese-request在lists.python.cn
> >     python-chinese-request在lists.python.cn>
> >     Unsubscribe: send unsubscribe to
> >     python-chinese-request在lists.python.cn
> >     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/20070926/d24d9ad4/attachment.html 

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

yrh

2007年09月26日 星期三 21:00

yrh yuanruihong在126.com
星期三 九月 26 21:00:02 HKT 2007

一个HTML附件被移除...
URL: http://python.cn/pipermail/python-chinese/attachments/20070926/ee949d0e/attachment.htm 

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

2007年09月26日 星期三 21:06

刀巴虫子 acestrong在gmail.com
星期三 九月 26 21:06:22 HKT 2007

同意~~

在07-9-26,Shao Feng <sevenever在gmail.com> 写道:
>
> a=[]
> 之后a就引用这个空的list,不引用原来那个5个元素的list了吧
>
> (a,b)=dict1[1]
> 的时候a又指回来5个元素的list了。
>
> On 9/26/07, jessinio liang < jessinio在gmail.com> wrote:
> >
> > >>> a=[]
> > 删了原来的,等于清空.
> >
> >
> >
> > _______________________________________________
> > 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
>



-- 
Best Regards!

Ace Strong

==================================================
Nanjing University of Aeronautics and Astronautics.
College of Civil Aviation
Tao Cheng
E-mail: acestrong在gmail.com ;acestrong在nuaa.edu.cn
Tel: 86-025-84892273
==================================================
-------------- 下一部分 --------------
一个HTML附件被移除...
URL: http://python.cn/pipermail/python-chinese/attachments/20070926/7b8f570b/attachment.html 

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

2007年09月27日 星期四 10:42

leopay leopay在gmail.com
星期四 九月 27 10:42:21 HKT 2007

a=[]ºÍa[:]=[]µ½µ×ÓÐʲôÇø±ðÄØ£¿

ÔÚ07-9-26£¬µ¶°Í³æ×Ó <acestrong在gmail.com> дµÀ£º
>
> ͬÒâ¡«¡«
>
> ÔÚ07-9-26£¬Shao Feng <sevenever在gmail.com> дµÀ£º
> >
> > a=[]
> > Ö®ºóa¾ÍÒýÓÃÕâ¸ö¿ÕµÄlist£¬²»ÒýÓÃÔ­À´ÄǸö5¸öÔªËصÄlistÁË°É
> >
> > (a,b)=dict1[1]
> > µÄʱºòaÓÖÖ¸»ØÀ´5¸öÔªËصÄlistÁË¡£
> >
> > On 9/26/07, jessinio liang < jessinio在gmail.com> wrote:
> > >
> > > >>> a=[]
> > > ɾÁËÔ­À´µÄ,µÈÓÚÇå¿Õ.
> > >
> > >
> > >
> > > _______________________________________________
> > > 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
> >
>
>
>
> --
> Best Regards£¡
>
> Ace Strong
>
> ==================================================
> Nanjing University of Aeronautics and Astronautics.
> College of Civil Aviation
> Tao Cheng
> E-mail: acestrong在gmail.com ;acestrong在nuaa.edu.cn
> Tel: 86-025-84892273
> ==================================================
> _______________________________________________
> 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/20070927/65a3dd25/attachment.htm 

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

2007年09月27日 星期四 10:47

beck917 beck917在gmail.com
星期四 九月 27 10:47:47 HKT 2007

class="vPasswordField required"
old form里的class是这样的.因为用的django自带的login模块
想重写class总不能定义为vPasswordField required这个吧

因为不知道怎么在oldform里重定义class的名称,所以手写了form,

现在的问题是怎么获取value??以便数据保持


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

2007年09月27日 星期四 10:48

junyi sun ccnusjy在gmail.com
星期四 九月 27 10:48:28 HKT 2007

char b[256];
char *a;
a=(char*)b;
a=NULL;   ///Ï൱ÓÚpythonÖеÄa=[]
a=(char*)b;
memset(a,0,256) //Ï൱ÓÚpythonÖеÄa[:]=[]



On 9/27/07, leopay <leopay在gmail.com> wrote:
>
> a=[]ºÍa[:]=[]µ½µ×ÓÐʲôÇø±ðÄØ£¿
>
> ÔÚ07-9-26£¬µ¶°Í³æ×Ó <acestrong在gmail.com> дµÀ£º
> >
> > ͬÒâ¡«¡«
> >
> > ÔÚ07-9-26£¬Shao Feng <sevenever在gmail.com> дµÀ£º
> > >
> > > a=[]
> > > Ö®ºóa¾ÍÒýÓÃÕâ¸ö¿ÕµÄlist£¬²»ÒýÓÃÔ­À´ÄǸö5¸öÔªËصÄlistÁË°É
> > >
> > > (a,b)=dict1[1]
> > > µÄʱºòaÓÖÖ¸»ØÀ´5¸öÔªËصÄlistÁË¡£
> > >
> > > On 9/26/07, jessinio liang < jessinio在gmail.com > wrote:
> > > >
> > > > >>> a=[]
> > > > ɾÁËÔ­À´µÄ,µÈÓÚÇå¿Õ.
> > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > 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
> > >
> >
> >
> >
> > --
> > Best Regards£¡
> >
> > Ace Strong
> >
> > ==================================================
> > Nanjing University of Aeronautics and Astronautics.
> > College of Civil Aviation
> > Tao Cheng
> > E-mail: acestrong在gmail.com ;acestrong@ nuaa.edu.cn
> > Tel: 86-025-84892273
> > ==================================================
> > _______________________________________________
> > 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/20070927/0e8a9fee/attachment.htm 

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

2007年09月27日 星期四 14:00

风向标 vaneoooo在gmail.com
星期四 九月 27 14:00:18 HKT 2007

·Å½øsession
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070927/ee09808e/attachment.htm 

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

2007年09月27日 星期四 17:01

beck917 beck917在gmail.com
星期四 九月 27 17:01:39 HKT 2007

ÒòΪÊÇdjango×Ô´øµÄloginÄ£¿é..ËùÒÔ²»Ì«¿ÉÄÜÂÒ¸Ä.ÄãµÄÒâ˼ÊÇÕâЩÊý¾ÝÒѾ­ÔÚsessionÖÐÁËÂð??



ÔÚ07-9-27£¬·çÏò±ê <vaneoooo在gmail.com> дµÀ£º
>
> ·Å½øsession
> _______________________________________________
> 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/20070927/2d04b5a5/attachment.html 

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

2007年09月27日 星期四 17:32

leopay leopay在gmail.com
星期四 九月 27 17:32:13 HKT 2007

ÖÕÓÚÃ÷°×ÁË£¬ths

ÔÚ07-9-27£¬junyi sun <ccnusjy在gmail.com> дµÀ£º
>
> char b[256];
> char *a;
> a=(char*)b;
> a=NULL;   ///Ï൱ÓÚpythonÖеÄa=[]
> a=(char*)b;
> memset(a,0,256) //Ï൱ÓÚpythonÖеÄa[:]=[]
>
>
>
> On 9/27/07, leopay <leopay在gmail.com> wrote:
> >
> > a=[]ºÍa[:]=[]µ½µ×ÓÐʲôÇø±ðÄØ£¿
> >
> > ÔÚ07-9-26£¬µ¶°Í³æ×Ó <acestrong在gmail.com> дµÀ£º
> > >
> > > ͬÒâ¡«¡«
> > >
> > > ÔÚ07-9-26£¬Shao Feng <sevenever在gmail.com> дµÀ£º
> > > >
> > > > a=[]
> > > > Ö®ºóa¾ÍÒýÓÃÕâ¸ö¿ÕµÄlist£¬²»ÒýÓÃÔ­À´ÄǸö5¸öÔªËصÄlistÁË°É
> > > >
> > > > (a,b)=dict1[1]
> > > > µÄʱºòaÓÖÖ¸»ØÀ´5¸öÔªËصÄlistÁË¡£
> > > >
> > > > On 9/26/07, jessinio liang < jessinio在gmail.com > wrote:
> > > > >
> > > > > >>> a=[]
> > > > > ɾÁËÔ­À´µÄ,µÈÓÚÇå¿Õ.
> > > > >
> > > > >
> > > > >
> > > > > _______________________________________________
> > > > > 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
> > > >
> > >
> > >
> > >
> > > --
> > > Best Regards£¡
> > >
> > > Ace Strong
> > >
> > > ==================================================
> > > Nanjing University of Aeronautics and Astronautics.
> > > College of Civil Aviation
> > > Tao Cheng
> > > E-mail: acestrong在gmail.com ;acestrong@ nuaa.edu.cn
> > > Tel: 86-025-84892273
> > > ==================================================
> > > _______________________________________________
> > > 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/20070927/91e3bfc6/attachment.htm 

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

2007年09月28日 星期五 13:48

风向标 vaneoooo在gmail.com
星期五 九月 28 13:48:34 HKT 2007

ÏÖÔÚdjangoÌṩ×Ô¶¨ÒåloginµÄ
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070928/07adf632/attachment.htm 

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号