- 浏览: 965 次
- 性别:
- 来自: 北京
最新评论
-
范三山:
test改为其他的单词完全没有问题,应该是test的命名有冲突 ...
简明 Python 教程里面的一个例子的问题
文章列表
例子的链接:
http://www.woodpecker.org.cn:9081/doc/abyteofpython_cn/chinese/ch11s06.html
class Person:
'''Represents a person.'''
population=0
def __init__(self,name):
'''Initializes the person's data.'''
self.name=name
print '(Initializing %s)' %self.name
#When this person is crea ...