2005年11月09日 星期三 15:52
On 11/9/05, epaulin <epaulin at gmail.com> wrote: > 只加到线索的第一封邮件,后面的不需要了; > 或者设置 reminder,每周或者每月提醒。
2005年11月09日 星期三 16:26
最好是遇到“主题”中含有“退订”两个字的就认为人家是要求退订的,就主动把人家给删了算了 这年头大家都活得不容易,没必要搞得太复杂,把所有人都影响了 在 2005年11月9日 星期三 15:44,黑沙 写道: > 呜乎哀哉!! > 大家看来真的是被这些白丁弄怕了? > 默许的邮件后缀就是教人怎么退订,不知道的还以为怎么了哪! > > --------------------------------------------------------------------------- >----------------------- 我赞同,不过退订的自动化操作不要搁在信后面,影响感情!也影响新进入者的情绪! > 搁到 www.python.cn <http://www.python.cn> 的网站上比较合适!
2005年11月10日 星期四 19:17
关于pass,我的理解就是空语句,是为了保持程序结构的完整性。 以if语句为例, 在c或c++/java中: if(true) ;//do nothing else { //do something } 对应于python就要这样写: if true: pass #do nothing else: #do something 所以,python中的pass语句就是c或java中的空语句:; 在05-11-9,Zoom Quiet <zoom.quiet at gmail.com> 写道: > > 在 05-11-9,xzsunmail<xzsunmail-qq at yahoo.com.cn> 写道: > > 最近看教程,发现了pass语句。有些不太明白。求教各位。 > > > > 程序入下: > > -------------- > > class Time: > > pass > > def printTime(time): > > print str(time.hours) + ':' + str(time.minutes) + > > ':' + \ > > str(time.seconds) > > > > now = Time() > > now.hours = 10 > > now.minutes = 30 > > now.seconds = 10 > > printTime(now) > > --------------- > > Time对象没有一个参数,可now实例却能够赋值,并且打印出来入下结果:10:30:10 > > > > 查了帮助文件,对于pass语句解释我看不明白。 > > 那位大侠能够解析详细些? > > > > 小弟先行谢过! > > > > > 这跟pass 没有关系的哪! > 是基本的对象函式定义的外部格式,很象JS 中的追加操作, > 这种写法等同于: > class Time: > pass > def printTime(self): > print str(time.hours) + ':' + str(time.minutes) +':' + \ > str(time.seconds) > > 是也乎! > 不过,考虑到有 time 内置模块,这么写可能是为了直接使用 time 的操作? > 没有上下文,只能这么猜了………… > -- > # Time is unimportant, only life important! > ## 面朝开源,我心自由! > > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051110/48a70940/attachment.html
Zeuux © 2025
京ICP备05028076号