Python论坛  - 讨论区

标题:[python-chinese] 老菜鸟 邹胖小 学习PYTHON 入门日志 (二)

2005年05月31日 星期二 15:52

Chao Zou chao.zou at gmail.com
Tue May 31 15:52:47 HKT 2005

感谢:
谢谢各位兄弟的支持,指出了我很多的错误,我会努力改正,然后出一个修正的东西。
感触:
python 的缩进很重要的,上一篇就是因为例子没有缩进就报错的。以前就知道FORTRAN
会有的地方要求缩进。以后能回头看看python的缩进能有什么样的好处,现在感觉就是
省掉了{}。
继续:

9:list列表,叫什么都无所谓,数组,Vector都行
     a=[1,"abc",2.87,"xxx"],就是它,很多类型的数据可以排在一起,
     当然中规中矩 的 也可以
     a=[1,2,3,4,667,471,288]  ,
     也可以是
     >>> leaf1=[0,1]
     >>> leaf2=[2,3]
     >>> leaf3=[4,5]
     >>> leaf4=[6,7]
     >>> branch1=[leaf1,leaf2]         这是list的list
     >>> branch2=[leaf3,leaf4]
     >>> root=[branch1,branch2]
    如果用的好就能 代替很多东西,象可以构造     树,堆栈,队列,

10:list中特别的地方,可以有负数的索引,
       
       
       -len  第一个元素
       -len+1 第二个
       ...
       -1    最后一个元素
       0   第一个元素
       1   第二个
       ...
       len -1 最后一个元素

       这样做我想 可能用到 循环队列中会比较有用吧,
       如果我想得到倒数第n 个数据可以之间 a[-n] 就可以了方便多了
       具体有什么深入的用法
       希望大牛们给个解释。
      
11:list的常用的操作
        list的截取
        	a[3:5] ,                  
        	a[4:],                     
        	a[:6],
        	a[:]
        	a[1:-1]  从a[1]  到a[len-1](最后面的元素)
        	很象matlab里面的数组的用法,还有就是 ":"左侧的元素的位置一定不能比右侧的大。
        	如  a[-1:1]  返回的就是[]  空的,a[4:3]也是如此。
        list最后面追加
        	a.append(var)
        计算list中某个元素的出现次数
        	a.count(var)
        list长度
        	len(var)
        list最后追加list
        	a.extend(list)    
        list中返回某值的位置
        	a.index(var)
        list中插入某值
        	a.insert(index,var)	
        	 还可以插入一个list 如:
       	 >>> b=["s","d"]
	 >>> a.insert(2,b)
	 >>> a
	 [1, 2, ['s', 'd'], 3, 4, 5, 6, 7]
	 >>>
        		ps:学习Python总是能给我带来惊喜!
        list弹出最后的值/或某个位置的值
        	a.pop()
	 a.pop(3)
       list中找到某值,并删除
       	a.remove(var)      注意一次只能删除一个,并且是最前面的。如果有多个var,要删除多次
       list中倒次序
       	a.reverse()
       list中排序
       	a.sort()
       	a.sort(func) ,用函数func(x,y)来做为规则排序
12:又一个很让我惊异的东西
       [  for k in L if  ]    
       是下面式子的代表
       
       returnList=[]
       for k in L:
       if : returnList.append()
       return returnList;
       
       看上去很简洁方便,注意是建立了一个新的,空的list然后往里面添加!
       我喜欢这个表达式子
       例子有:
       >>> [ k.upper() for k in a if k.isalpha() ]    将list  a 中的字母的东西都变成大写
       >>> [ k.lower() for k in a if k.isupper() ]  将a 中大写都变成小写 ,
        注意生成的新的list 不是原来的list
        [ k + 1 for k in a if type(k)==types.IntType ]  将a中的int都加1

以上是python的list,下一篇将是string等

邹胖小 2005年5月31日 祝大家快乐安康 ,六一儿童节快乐!

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

2005年05月31日 星期二 17:04

Bruce Who whoonline at msn.com
Tue May 31 17:04:39 HKT 2005

	外国人喜欢用邮件列表还有一点是速度快,用客户端可以自动收取邮件,新发的帖(姑且称之为帖子)都可以看到,用不着自己到论坛上去到处找,你发的也可以保证其它所有人都看得到,而且在本地看明显比用网页要快。

======= 2005-05-31 16:31:22 Neo Chan \(netkiller\) wrote: =======

>我知到,做两个版主更好些。。:)
>
>烦,外国人喜欢用邮件列表。然后再+NEWS 复制,可以做过信息集中。共享。
>中国喜欢自己单干。每个BBS都有自己的弟子。。型成一个小团体。
>贴子不共享。也不喜欢让别人转。因为别人转贴不写出处。。
>
>BBS都是WEB动态页的。在google不太好搜。。邮件列表是静态html的好些。
>
>-----Original Message-----
>From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of limodou
>Sent: Tuesday, May 31, 2005 3:45 PM
>To: python-chinese at lists.python.cn
>Subject: Re: [python-chinese] chinaunix.n et上面开了一个python的论坛
>
>呵呵。我已经是中国Linux论坛的版主了,那个开了很长时间人也不多。
>
>在 05-5-31,Neo Chan<neo.chen at achievo.com> 写道:
>> 才开,我老早就建议开了。。但人太少了。。
>> 我在那里任PostgreSQL版主。。好久没有上网了。。:(我们公司不让上网。。哎。。
>> LDAP我也做过一小段时间版主:(因没有时间管理。就辞去了。
>> 
>> 建议Limodou 应该去任版主。。。哈哈。。:)
>> 
>> -----Original Message-----
>> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of zgq
>> Sent: Tuesday, May 31, 2005 3:09 PM
>> To: python-chinese at lists.python.cn
>> Subject: [python-chinese] chinaunix.net上面开了一个python的论坛
>> 
>>    www.chinaunix.net
>> 上面开的,有能力赶快去申请版主阿
>> 
>> _______________________________________________
>> python-chinese list
>> python-chinese at lists.python.cn
>> http://python.cn/mailman/listinfo/python-chinese
>> 
>> 
>> 
>
>
>-- 
>I like python! 
>My Donews Blog: http://www.donews.net/limodou
>New Google Maillist: http://groups-beta.google.com/group/python-cn
>_______________________________________________
>python-chinese list
>python-chinese at lists.python.cn
>http://python.cn/mailman/listinfo/python-chinese
>

= = = = = = = = = = = = = = = = = = = =
			
Best regards,

        Bruce Who
          2005-05-31


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

2005年05月31日 星期二 17:09

Neo Chan (netkiller) neo.chen at achievo.com
Tue May 31 17:09:36 HKT 2005

我很烦BBS的,由其是每次都得登录。。;)烦
还有,有时写了一大堆东东,一提交。我靠全没了。back后也没了。只能重写,这样能整死人的。。

-----Original Message-----
From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Bruce Who
Sent: Tuesday, May 31, 2005 5:05 PM
To: python-chinese at lists.python.cn
Subject: Re: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛


	外国人喜欢用邮件列表还有一点是速度快,用客户端可以自动收取邮件,新发的帖(姑且称之为帖子)都可以看到,用不着自己到论坛上去到处找,你发的也可以保证其它所有人都看得到,而且在本地看明显比用网页要快。

======= 2005-05-31 16:31:22 Neo Chan \(netkiller\) wrote: =======

>我知到,做两个版主更好些。。:)
>
>烦,外国人喜欢用邮件列表。然后再+NEWS 复制,可以做过信息集中。共享。
>中国喜欢自己单干。每个BBS都有自己的弟子。。型成一个小团体。
>贴子不共享。也不喜欢让别人转。因为别人转贴不写出处。。
>
>BBS都是WEB动态页的。在google不太好搜。。邮件列表是静态html的好些。
>
>-----Original Message-----
>From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of limodou
>Sent: Tuesday, May 31, 2005 3:45 PM
>To: python-chinese at lists.python.cn
>Subject: Re: [python-chinese] chinaunix.n et上面开了一个python的论坛
>
>呵呵。我已经是中国Linux论坛的版主了,那个开了很长时间人也不多。
>
>在 05-5-31,Neo Chan<neo.chen at achievo.com> 写道:
>> 才开,我老早就建议开了。。但人太少了。。
>> 我在那里任PostgreSQL版主。。好久没有上网了。。:(我们公司不让上网。。哎。。
>> LDAP我也做过一小段时间版主:(因没有时间管理。就辞去了。
>> 
>> 建议Limodou 应该去任版主。。。哈哈。。:)
>> 
>> -----Original Message-----
>> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of zgq
>> Sent: Tuesday, May 31, 2005 3:09 PM
>> To: python-chinese at lists.python.cn
>> Subject: [python-chinese] chinaunix.net上面开了一个python的论坛
>> 
>>    www.chinaunix.net
>> 上面开的,有能力赶快去申请版主阿
>> 
>> _______________________________________________
>> python-chinese list
>> python-chinese at lists.python.cn
>> http://python.cn/mailman/listinfo/python-chinese
>> 
>> 
>> 
>
>
>-- 
>I like python! 
>My Donews Blog: http://www.donews.net/limodou
>New Google Maillist: http://groups-beta.google.com/group/python-cn
>_______________________________________________
>python-chinese list
>python-chinese at lists.python.cn
>http://python.cn/mailman/listinfo/python-chinese
>

= = = = = = = = = = = = = = = = = = = =
			
Best regards,

        Bruce Who
          2005-05-31


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

2005年05月31日 星期二 17:10

Bruce Who whoonline at msn.com
Tue May 31 17:10:30 HKT 2005

SGkhDQoNCgm41bLFyc90eHQydGFnc9b30rOyxbeiz9bT0NbQzsS1xHNhbXBsZcHLo6xab29t0Na1
xLet0uuho8PA1tCyu9fjtcTKx9Ta1eK49s7EtbXX7rrz09DC0sLro7oNCg0KICAgIFRyYW5zbGF0
ZWQgdG8gQ2hpbmVzZSBieSDlkT8g55A/IChab29tIFF1aWV0KS4NCg0KoaGhoaGhoaGhoaGhoaGh
odbCDQrA8aOhDQogCQkJCQ0KDQqhoaGhoaGhoaGhoaGhoaGhQnJ1Y2UgV2hvDQqhoaGhoaGhoaGh
oaGhoaGhoaGhoTIwMDUtMDUtMzENCg==

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

2005年05月31日 星期二 17:34

Zhu Sheng szhu at jadechip.com
Tue May 31 17:34:35 HKT 2005

水木去过没?去过了就不会这么说了,BBS的优点主要是实时性要比邮件列表高,当然这也成为它的缺点。
BTW: 这里的BBS不是指web论坛。
----- Original Message ----- 
From: "Neo Chan (netkiller)" <neo.chen at achievo.com>
To: <python-chinese at lists.python.cn>
Sent: Tuesday, May 31, 2005 5:09 PM
Subject: RE: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛


> 我很烦BBS的,由其是每次都得登录。。;)烦
> 还有,有时写了一大堆东东,一提交。我靠全没了。back后也没了。只能重写,这样能整死人的。。
> 
> -----Original Message-----
> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Bruce Who
> Sent: Tuesday, May 31, 2005 5:05 PM
> To: python-chinese at lists.python.cn
> Subject: Re: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛
> 
> 
> 外国人喜欢用邮件列表还有一点是速度快,用客户端可以自动收取邮件,新发的帖(姑且称之为帖子)都可以看到,用不着自己到论坛上去到处找,你发的也可以保证其它所有人都看得到,而且在本地看明显比用网页要快。
> 
> ======= 2005-05-31 16:31:22 Neo Chan \(netkiller\) wrote: =======
> 
>>我知到,做两个版主更好些。。:)
>>
>>烦,外国人喜欢用邮件列表。然后再+NEWS 复制,可以做过信息集中。共享。
>>中国喜欢自己单干。每个BBS都有自己的弟子。。型成一个小团体。
>>贴子不共享。也不喜欢让别人转。因为别人转贴不写出处。。
>>
>>BBS都是WEB动态页的。在google不太好搜。。邮件列表是静态html的好些。
>>
>>-----Original Message-----
>>From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of limodou
>>Sent: Tuesday, May 31, 2005 3:45 PM
>>To: python-chinese at lists.python.cn
>>Subject: Re: [python-chinese] chinaunix.n et上面开了一个python的论坛
>>
>>呵呵。我已经是中国Linux论坛的版主了,那个开了很长时间人也不多。
>>
>>在 05-5-31,Neo Chan<neo.chen at achievo.com> 写道:
>>> 才开,我老早就建议开了。。但人太少了。。
>>> 我在那里任PostgreSQL版主。。好久没有上网了。。:(我们公司不让上网。。哎。。
>>> LDAP我也做过一小段时间版主:(因没有时间管理。就辞去了。
>>> 
>>> 建议Limodou 应该去任版主。。。哈哈。。:)
>>> 
>>> -----Original Message-----
>>> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of zgq
>>> Sent: Tuesday, May 31, 2005 3:09 PM
>>> To: python-chinese at lists.python.cn
>>> Subject: [python-chinese] chinaunix.net上面开了一个python的论坛
>>> 
>>>    www.chinaunix.net
>>> 上面开的,有能力赶快去申请版主阿
>>> 
>>> _______________________________________________
>>> python-chinese list
>>> python-chinese at lists.python.cn
>>> http://python.cn/mailman/listinfo/python-chinese
>>> 
>>> 
>>> 
>>
>>
>>-- 
>>I like python! 
>>My Donews Blog: http://www.donews.net/limodou
>>New Google Maillist: http://groups-beta.google.com/group/python-cn
>>_______________________________________________
>>python-chinese list
>>python-chinese at lists.python.cn
>>http://python.cn/mailman/listinfo/python-chinese
>>
> 
> = = = = = = = = = = = = = = = = = = = =
> 
> Best regards,
> 
>         Bruce Who
>           2005-05-31
> 
>


--------------------------------------------------------------------------------


> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>

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

2005年05月31日 星期二 17:38

Neo Chan (netkiller) neo.chen at achievo.com
Tue May 31 17:38:49 HKT 2005

基于终端的BBS我也搞过。。装上后用得人省。。这种BBS也可以与新闻组,邮件列表复制 很爽。。就是没人用啊。。

-----Original Message-----
From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Zhu Sheng
Sent: Tuesday, May 31, 2005 5:35 PM
To: python-chinese at lists.python.cn
Subject: Re: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛

水木去过没?去过了就不会这么说了,BBS的优点主要是实时性要比邮件列表高,当然这也成为它的缺点。
BTW: 这里的BBS不是指web论坛。
----- Original Message ----- 
From: "Neo Chan (netkiller)" <neo.chen at achievo.com>
To: <python-chinese at lists.python.cn>
Sent: Tuesday, May 31, 2005 5:09 PM
Subject: RE: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛


> 我很烦BBS的,由其是每次都得登录。。;)烦
> 还有,有时写了一大堆东东,一提交。我靠全没了。back后也没了。只能重写,这样能整死人的。。
> 
> -----Original Message-----
> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Bruce Who
> Sent: Tuesday, May 31, 2005 5:05 PM
> To: python-chinese at lists.python.cn
> Subject: Re: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛
> 
> 
> 外国人喜欢用邮件列表还有一点是速度快,用客户端可以自动收取邮件,新发的帖(姑且称之为帖子)都可以看到,用不着自己到论坛上去到处找,你发的也可以保证其它所有人都看得到,而且在本地看明显比用网页要快。
> 
> ======= 2005-05-31 16:31:22 Neo Chan \(netkiller\) wrote: =======
> 
>>我知到,做两个版主更好些。。:)
>>
>>烦,外国人喜欢用邮件列表。然后再+NEWS 复制,可以做过信息集中。共享。
>>中国喜欢自己单干。每个BBS都有自己的弟子。。型成一个小团体。
>>贴子不共享。也不喜欢让别人转。因为别人转贴不写出处。。
>>
>>BBS都是WEB动态页的。在google不太好搜。。邮件列表是静态html的好些。
>>
>>-----Original Message-----
>>From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of limodou
>>Sent: Tuesday, May 31, 2005 3:45 PM
>>To: python-chinese at lists.python.cn
>>Subject: Re: [python-chinese] chinaunix.n et上面开了一个python的论坛
>>
>>呵呵。我已经是中国Linux论坛的版主了,那个开了很长时间人也不多。
>>
>>在 05-5-31,Neo Chan<neo.chen at achievo.com> 写道:
>>> 才开,我老早就建议开了。。但人太少了。。
>>> 我在那里任PostgreSQL版主。。好久没有上网了。。:(我们公司不让上网。。哎。。
>>> LDAP我也做过一小段时间版主:(因没有时间管理。就辞去了。
>>> 
>>> 建议Limodou 应该去任版主。。。哈哈。。:)
>>> 
>>> -----Original Message-----
>>> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of zgq
>>> Sent: Tuesday, May 31, 2005 3:09 PM
>>> To: python-chinese at lists.python.cn
>>> Subject: [python-chinese] chinaunix.net上面开了一个python的论坛
>>> 
>>>    www.chinaunix.net
>>> 上面开的,有能力赶快去申请版主阿
>>> 
>>> _______________________________________________
>>> python-chinese list
>>> python-chinese at lists.python.cn
>>> http://python.cn/mailman/listinfo/python-chinese
>>> 
>>> 
>>> 
>>
>>
>>-- 
>>I like python! 
>>My Donews Blog: http://www.donews.net/limodou
>>New Google Maillist: http://groups-beta.google.com/group/python-cn
>>_______________________________________________
>>python-chinese list
>>python-chinese at lists.python.cn
>>http://python.cn/mailman/listinfo/python-chinese
>>
> 
> = = = = = = = = = = = = = = = = = = = =
> 
> Best regards,
> 
>         Bruce Who
>           2005-05-31
> 
>


--------------------------------------------------------------------------------


> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>

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

2005年05月31日 星期二 18:00

Zoom Quiet zoom.quiet at gmail.com
Tue May 31 18:00:36 HKT 2005

http://wiki.woodpecker.org.cn/moin/ChaoZouPyNotes
继续收藏!!

其实Python 使用格式来约定结构,正是其最最优秀的品质之一哪!
这样一来才真正让Py 脚本成为全球通用语言是也乎?!


在 05-5-31,Chao Zou<chao.zou at gmail.com> 写道:
> 感谢:
> 谢谢各位兄弟的支持,指出了我很多的错误,我会努力改正,然后出一个修正的东西。
> 感触:
> python 的缩进很重要的,上一篇就是因为例子没有缩进就报错的。以前就知道FORTRAN
> 会有的地方要求缩进。以后能回头看看python的缩进能有什么样的好处,现在感觉就是
> 省掉了{}。
> 继续:
> 
> 9:list列表,叫什么都无所谓,数组,Vector都行
>      a=[1,"abc",2.87,"xxx"],就是它,很多类型的数据可以排在一起,
>      当然中规中矩 的 也可以
>      a=[1,2,3,4,667,471,288]  ,
>      也可以是
>      >>> leaf1=[0,1]
>      >>> leaf2=[2,3]
>      >>> leaf3=[4,5]
>      >>> leaf4=[6,7]
>      >>> branch1=[leaf1,leaf2]         这是list的list
>      >>> branch2=[leaf3,leaf4]
>      >>> root=[branch1,branch2]
>     如果用的好就能 代替很多东西,象可以构造     树,堆栈,队列,
> 
> 10:list中特别的地方,可以有负数的索引,
> 
>        -len  第一个元素
>        -len+1 第二个
>        ...
>        -1    最后一个元素
>        0   第一个元素
>        1   第二个
>        ...
>        len -1 最后一个元素
> 
>        这样做我想 可能用到 循环队列中会比较有用吧,
>        如果我想得到倒数第n 个数据可以之间 a[-n] 就可以了方便多了
>        具体有什么深入的用法
>        希望大牛们给个解释。
> 
> 11:list的常用的操作
>         list的截取
>                 a[3:5] ,
>                 a[4:],
>                 a[:6],
>                 a[:]
>                 a[1:-1]  从a[1]  到a[len-1](最后面的元素)
>                 很象matlab里面的数组的用法,还有就是 ":"左侧的元素的位置一定不能比右侧的大。
>                 如  a[-1:1]  返回的就是[]  空的,a[4:3]也是如此。
>         list最后面追加
>                 a.append(var)
>         计算list中某个元素的出现次数
>                 a.count(var)
>         list长度
>                 len(var)
>         list最后追加list
>                 a.extend(list)
>         list中返回某值的位置
>                 a.index(var)
>         list中插入某值
>                 a.insert(index,var)
>                  还可以插入一个list 如:
>          >>> b=["s","d"]
>          >>> a.insert(2,b)
>          >>> a
>          [1, 2, ['s', 'd'], 3, 4, 5, 6, 7]
>          >>>
>                         ps:学习Python总是能给我带来惊喜!
>         list弹出最后的值/或某个位置的值
>                 a.pop()
>          a.pop(3)
>        list中找到某值,并删除
>         a.remove(var)      注意一次只能删除一个,并且是最前面的。如果有多个var,要删除多次
>        list中倒次序
>         a.reverse()
>        list中排序
>         a.sort()
>         a.sort(func) ,用函数func(x,y)来做为规则排序
> 12:又一个很让我惊异的东西
>        [  for k in L if  ]
>        是下面式子的代表
> 
>        returnList=[]
>        for k in L:
>        if : returnList.append()
>        return returnList;
> 
>        看上去很简洁方便,注意是建立了一个新的,空的list然后往里面添加!
>        我喜欢这个表达式子
>        例子有:
>        >>> [ k.upper() for k in a if k.isalpha() ]    将list  a 中的字母的东西都变成大写
>        >>> [ k.lower() for k in a if k.isupper() ]  将a 中大写都变成小写 ,
>         注意生成的新的list 不是原来的list
>         [ k + 1 for k in a if type(k)==types.IntType ]  将a中的int都加1
> 
> 以上是python的list,下一篇将是string等
> 
> 邹胖小 2005年5月31日 祝大家快乐安康 ,六一儿童节快乐!
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
[Time is unimportant, only life important!]

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

2005年05月31日 星期二 18:06

Bruce Who whoonline at msn.com
Tue May 31 18:06:35 HKT 2005

======= 2005-05-31 17:34:35 Zhu Sheng wrote: =======

>水木去过没?去过了就不会这么说了,BBS的优点主要是实时性要比邮件列表高,当然这也成为它的缺点。
>BTW: 这里的BBS不是指web论坛。

     那是因为没有设置邮件客户端自动收取邮件,一般都可以设置为比如半个小时收一次。就算是BBS,别人也不会马上回的,而且自己的问题都分散在各个版面,不好追踪。还有就是现在的BBS基本上只在高校存在,自从前段时间的事件之后,BBS已经成了校内用户的专有品,更加难于被大众所使用了。

>----- Original Message ----- 
>From: "Neo Chan (netkiller)" <neo.chen at achievo.com>
>To: <python-chinese at lists.python.cn>
>Sent: Tuesday, May 31, 2005 5:09 PM
>Subject: RE: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛
>
>
>> 我很烦BBS的,由其是每次都得登录。。;)烦
>> 还有,有时写了一大堆东东,一提交。我靠全没了。back后也没了。只能重写,这样能整死人的。。
>> 
>> -----Original Message-----
>> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Bruce Who
>> Sent: Tuesday, May 31, 2005 5:05 PM
>> To: python-chinese at lists.python.cn
>> Subject: Re: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛
>> 
>> 
>> 外国人喜欢用邮件列表还有一点是速度快,用客户端可以自动收取邮件,新发的帖(姑且称之为帖子)都可以看到,用不着自己到论坛上去到处找,你发的也可以保证其它所有人都看得到,而且在本地看明显比用网页要快。
>> 
>> ======= 2005-05-31 16:31:22 Neo Chan \(netkiller\) wrote: =======
>> 
>>>我知到,做两个版主更好些。。:)
>>>
>>>烦,外国人喜欢用邮件列表。然后再+NEWS 复制,可以做过信息集中。共享。
>>>中国喜欢自己单干。每个BBS都有自己的弟子。。型成一个小团体。
>>>贴子不共享。也不喜欢让别人转。因为别人转贴不写出处。。
>>>
>>>BBS都是WEB动态页的。在google不太好搜。。邮件列表是静态html的好些。
>>>
>>>-----Original Message-----
>>>From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of limodou
>>>Sent: Tuesday, May 31, 2005 3:45 PM
>>>To: python-chinese at lists.python.cn
>>>Subject: Re: [python-chinese] chinaunix.n et上面开了一个python的论坛
>>>
>>>呵呵。我已经是中国Linux论坛的版主了,那个开了很长时间人也不多。
>>>
>>>在 05-5-31,Neo Chan<neo.chen at achievo.com> 写道:
>>>> 才开,我老早就建议开了。。但人太少了。。
>>>> 我在那里任PostgreSQL版主。。好久没有上网了。。:(我们公司不让上网。。哎。。
>>>> LDAP我也做过一小段时间版主:(因没有时间管理。就辞去了。
>>>> 
>>>> 建议Limodou 应该去任版主。。。哈哈。。:)
>>>> 
>>>> -----Original Message-----
>>>> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of zgq
>>>> Sent: Tuesday, May 31, 2005 3:09 PM
>>>> To: python-chinese at lists.python.cn
>>>> Subject: [python-chinese] chinaunix.net上面开了一个python的论坛
>>>> 
>>>>    www.chinaunix.net
>>>> 上面开的,有能力赶快去申请版主阿
>>>> 
>>>> _______________________________________________
>>>> python-chinese list
>>>> python-chinese at lists.python.cn
>>>> http://python.cn/mailman/listinfo/python-chinese
>>>> 
>>>> 
>>>> 
>>>
>>>
>>>-- 
>>>I like python! 
>>>My Donews Blog: http://www.donews.net/limodou
>>>New Google Maillist: http://groups-beta.google.com/group/python-cn
>>>_______________________________________________
>>>python-chinese list
>>>python-chinese at lists.python.cn
>>>http://python.cn/mailman/listinfo/python-chinese
>>>
>> 
>> = = = = = = = = = = = = = = = = = = = =
>> 
>> Best regards,
>> 
>>         Bruce Who
>>           2005-05-31
>> 
>>
>
>
>--------------------------------------------------------------------------------
>
>
>> _______________________________________________
>> 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
>

= = = = = = = = = = = = = = = = = = = =
			
Best regards,

        Bruce Who
          2005-05-31


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

2005年05月31日 星期二 18:35

Zhu Sheng szhu at jadechip.com
Tue May 31 18:35:00 HKT 2005

现在新水木都可以上了,在这里宣传一下:), 地址是newsmth.org,可以telnet上
BBS之所以分那么多的版面就是为了便于管理,而且专版专用,大家讨论的话题集中些。平时还有斑竹整理版面,删除水帖,还有精华区的功能也是邮件列表所缺乏的。
说了这么多BBS的好处,希望管理员不要见怪:)
----- Original Message ----- 
From: "Bruce Who" <whoonline at msn.com>
To: <python-chinese at lists.python.cn>; "python-cn-google" <python-cn at googlegroups.com>
Sent: Tuesday, May 31, 2005 6:06 PM
Subject: Re:[python-chinese]_chinaunix.n_et上面开了一个python的论坛


> 
> ======= 2005-05-31 17:34:35 Zhu Sheng wrote: =======
> 
>>水木去过没?去过了就不会这么说了,BBS的优点主要是实时性要比邮件列表高,当然这也成为它的缺点。
>>BTW: 这里的BBS不是指web论坛。
> 
>     那是因为没有设置邮件客户端自动收取邮件,一般都可以设置为比如半个小时收一次。就算是BBS,别人也不会马上回的,而且自己的问题都分散在各个版面,不好追踪。还有就是现在的BBS基本上只在高校存在,自从前段时间的事件之后,BBS已经成了校内用户的专有品,更加难于被大众所使用了。
> 
>>----- Original Message ----- 
>>From: "Neo Chan (netkiller)" <neo.chen at achievo.com>
>>To: <python-chinese at lists.python.cn>
>>Sent: Tuesday, May 31, 2005 5:09 PM
>>Subject: RE: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛
>>
>>
>>> 我很烦BBS的,由其是每次都得登录。。;)烦
>>> 还有,有时写了一大堆东东,一提交。我靠全没了。back后也没了。只能重写,这样能整死人的。。
>>> 
>>> -----Original Message-----
>>> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Bruce Who
>>> Sent: Tuesday, May 31, 2005 5:05 PM
>>> To: python-chinese at lists.python.cn
>>> Subject: Re: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛
>>> 
>>> 
>>> 外国人喜欢用邮件列表还有一点是速度快,用客户端可以自动收取邮件,新发的帖(姑且称之为帖子)都可以看到,用不着自己到论坛上去到处找,你发的也可以保证其它所有人都看得到,而且在本地看明显比用网页要快。
>>> 
>>> ======= 2005-05-31 16:31:22 Neo Chan \(netkiller\) wrote: =======
>>> 
>>>>我知到,做两个版主更好些。。:)
>>>>
>>>>烦,外国人喜欢用邮件列表。然后再+NEWS 复制,可以做过信息集中。共享。
>>>>中国喜欢自己单干。每个BBS都有自己的弟子。。型成一个小团体。
>>>>贴子不共享。也不喜欢让别人转。因为别人转贴不写出处。。
>>>>
>>>>BBS都是WEB动态页的。在google不太好搜。。邮件列表是静态html的好些。
>>>>
>>>>-----Original Message-----
>>>>From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of limodou
>>>>Sent: Tuesday, May 31, 2005 3:45 PM
>>>>To: python-chinese at lists.python.cn
>>>>Subject: Re: [python-chinese] chinaunix.n et上面开了一个python的论坛
>>>>
>>>>呵呵。我已经是中国Linux论坛的版主了,那个开了很长时间人也不多。
>>>>
>>>>在 05-5-31,Neo Chan<neo.chen at achievo.com> 写道:
>>>>> 才开,我老早就建议开了。。但人太少了。。
>>>>> 我在那里任PostgreSQL版主。。好久没有上网了。。:(我们公司不让上网。。哎。。
>>>>> LDAP我也做过一小段时间版主:(因没有时间管理。就辞去了。
>>>>> 
>>>>> 建议Limodou 应该去任版主。。。哈哈。。:)
>>>>> 
>>>>> -----Original Message-----
>>>>> From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of zgq
>>>>> Sent: Tuesday, May 31, 2005 3:09 PM
>>>>> To: python-chinese at lists.python.cn
>>>>> Subject: [python-chinese] chinaunix.net上面开了一个python的论坛
>>>>> 
>>>>>    www.chinaunix.net
>>>>> 上面开的,有能力赶快去申请版主阿
>>>>> 
>>>>> _______________________________________________
>>>>> python-chinese list
>>>>> python-chinese at lists.python.cn
>>>>> http://python.cn/mailman/listinfo/python-chinese
>>>>> 
>>>>> 
>>>>> 
>>>>
>>>>
>>>>-- 
>>>>I like python! 
>>>>My Donews Blog: http://www.donews.net/limodou
>>>>New Google Maillist: http://groups-beta.google.com/group/python-cn
>>>>_______________________________________________
>>>>python-chinese list
>>>>python-chinese at lists.python.cn
>>>>http://python.cn/mailman/listinfo/python-chinese
>>>>
>>> 
>>> = = = = = = = = = = = = = = = = = = = =
>>> 
>>> Best regards,
>>> 
>>>         Bruce Who
>>>           2005-05-31
>>> 
>>>
>>
>>
>>--------------------------------------------------------------------------------
>>
>>
>>> _______________________________________________
>>> 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
>>
> 
> = = = = = = = = = = = = = = = = = = = =
> 
> Best regards,
> 
>         Bruce Who
>           2005-05-31
> 
>


--------------------------------------------------------------------------------


> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>

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

2005年05月31日 星期二 20:06

Chun Lin Zhang zhangcl at smmail.cn
Tue May 31 20:06:23 HKT 2005

yjrg.net
newsmth.net
都是公众网可以访问的

----- Original Message ----- 
From: "Bruce Who" <whoonline at msn.com>
To: <python-chinese at lists.python.cn>; "python-cn-google"
<python-cn at googlegroups.com>
Sent: Tuesday, May 31, 2005 6:06 PM
Subject: Re:[python-chinese]_chinaunix.n_et上面开了一个python的论坛


>
> ======= 2005-05-31 17:34:35 Zhu Sheng wrote: =======
>
> >水木去过没?去过了就不会这么说了,BBS的优点主要是实时性要比邮件列表高,当
然这也成为它的缺点。
> >BTW: 这里的BBS不是指web论坛。
>
>      那是因为没有设置邮件客户端自动收取邮件,一般都可以设置为比如半个小时
收一次。就算是BBS,别人也不会马上回的,而且自己的问题都分散在各个版面,不好
追踪。还有就是现在的BBS基本上只在高校存在,自从前段时间的事件之后,BBS已经成
了校内用户的专有品,更加难于被大众所使用了。
>
> >----- Original Message ----- 
> >From: "Neo Chan (netkiller)" <neo.chen at achievo.com>
> >To: <python-chinese at lists.python.cn>
> >Sent: Tuesday, May 31, 2005 5:09 PM
> >Subject: RE: RE: [python-chinese] chinaunix.n et上面开了一个python的论坛
> >
> >
> >> 我很烦BBS的,由其是每次都得登录。。;)烦
> >> 还有,有时写了一大堆东东,一提交。我靠全没了。back后也没了。只能重写,
这样能整死人的。。
> >>
> >> -----Original Message-----
> >> From: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Bruce Who
> >> Sent: Tuesday, May 31, 2005 5:05 PM
> >> To: python-chinese at lists.python.cn
> >> Subject: Re: RE: [python-chinese] chinaunix.n et上面开了一个python的论
坛
> >>
> >>
> >> 外国人喜欢用邮件列表还有一点是速度快,用客户端可以自动收取邮件,新发的
帖(姑且称之为帖子)都可以看到,用不着自己到论坛上去到处找,你发的也可以保证
其它所有人都看得到,而且在本地看明显比用网页要快。
> >>
> >> ======= 2005-05-31 16:31:22 Neo Chan \(netkiller\) wrote: =======
> >>
> >>>我知到,做两个版主更好些。。:)
> >>>
> >>>烦,外国人喜欢用邮件列表。然后再+NEWS 复制,可以做过信息集中。共享。
> >>>中国喜欢自己单干。每个BBS都有自己的弟子。。型成一个小团体。
> >>>贴子不共享。也不喜欢让别人转。因为别人转贴不写出处。。
> >>>
> >>>BBS都是WEB动态页的。在google不太好搜。。邮件列表是静态html的好些。
> >>>
> >>>-----Original Message-----
> >>>From: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn] On Behalf Of limodou
> >>>Sent: Tuesday, May 31, 2005 3:45 PM
> >>>To: python-chinese at lists.python.cn
> >>>Subject: Re: [python-chinese] chinaunix.n et上面开了一个python的论坛
> >>>
> >>>呵呵。我已经是中国Linux论坛的版主了,那个开了很长时间人也不多。
> >>>
> >>>在 05-5-31,Neo Chan<neo.chen at achievo.com> 写道:
> >>>> 才开,我老早就建议开了。。但人太少了。。
> >>>> 我在那里任PostgreSQL版主。。好久没有上网了。。:(我们公司不让上
网。。哎。。
> >>>> LDAP我也做过一小段时间版主:(因没有时间管理。就辞去了。
> >>>>
> >>>> 建议Limodou 应该去任版主。。。哈哈。。:)
> >>>>
> >>>> -----Original Message-----
> >>>> From: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn] On Behalf Of zgq
> >>>> Sent: Tuesday, May 31, 2005 3:09 PM
> >>>> To: python-chinese at lists.python.cn
> >>>> Subject: [python-chinese] chinaunix.net上面开了一个python的论坛
> >>>>
> >>>>    www.chinaunix.net
> >>>> 上面开的,有能力赶快去申请版主阿
> >>>>
> >>>> _______________________________________________
> >>>> python-chinese list
> >>>> python-chinese at lists.python.cn
> >>>> http://python.cn/mailman/listinfo/python-chinese
> >>>>
> >>>>
> >>>>
> >>>
> >>>
> >>>-- 
> >>>I like python!
> >>>My Donews Blog: http://www.donews.net/limodou
> >>>New Google Maillist: http://groups-beta.google.com/group/python-cn
> >>>_______________________________________________
> >>>python-chinese list
> >>>python-chinese at lists.python.cn
> >>>http://python.cn/mailman/listinfo/python-chinese
> >>>
> >>
> >> = = = = = = = = = = = = = = = = = = = =
> >>
> >> Best regards,
> >>
> >>         Bruce Who
> >>           2005-05-31
> >>
> >>
> >
> >
>
>---------------------------------------------------------------------------
-----
> >
> >
> >> _______________________________________________
> >> 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
> >
>
> = = = = = = = = = = = = = = = = = = = =
>
> Best regards,
>
>         Bruce Who
>           2005-05-31
>
>


----------------------------------------------------------------------------
----


> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>


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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号