class Example:
values=None
s1=Example
s1.values.append(1)
s1.values.append(2)
for x in s1.values:
print x
使用Python 2.7
输出:
line 8, in Example
s1=Example
NameError: name 'Example' is not defined
enter code here
python的新手,并不确定为什么它不能识别简单的类。
答案 0 :(得分:2)
以下是您的工作示例:
class Example:
def __init__(self):
self.values = []
s1 = Example()
s1.values.append(1)
s1.values.append(2)
for x in s1.values:
print x
此外,我建议您关注一些可用的python tutorial