モジュール内にクラス test を持つモジュール Test.py があります。コードは次のとおりです。
class test:
SIZE = 100;
tot = 0;
def __init__(self, int1, int2):
tot = int1 + int2;
def getTot(self):
return tot;
def printIntegers(self):
for i in range(0, 10):
print(i);
今、通訳で私が試します:
>>> import Test
>>> t = test(1, 2);
次のエラーが表示されます。
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
t = test(1, 2);
NameError: name 'test' is not defined
どこで私は間違えましたか?