我在名为code_database.py
的模块中有以下代码class Entry():
def enter_data(self):
self.title = input('enter a title: ')
print('enter the code, press ctrl-d to end: ')
self.code = sys.stdin.readlines()
self.tags = input('enter tags: ')
def save_data(self):
with open('entry.pickle2', 'ab') as f:
pickle.dump(self, f)
在空闲时,类定义的方法可以正常工作:
>>> import code_database
>>> entry = code_database.Entry()
>>> entry.enter_data()
enter a title: a
enter the code, press ctrl-d to end:
benter tags: c
>>> entry.title
'a'
>>> entry.code
['b']
>>> entry.tags
'c'
>>>
但是如果我从外部程序调用该模块并尝试调用这些方法,则会引发NameError:
import code_database
entry = code_database.Entry()
entry.enter_data()
entry.save_data()
在终端中导致这个:
$python testclass.py
enter a title: mo
Traceback (most recent call last):
File "testclass.py", line 6, in <module>
entry.enter_data()
File "/home/mo/python/projects/code_database/code_database.py", line 8, in enter_data
self.title = input('enter a title: ')
File "<string>", line 1, in <module>
NameError: name 'mo' is not defined
答案 0 :(得分:3)
运行testclass.py
文件时,您正在使用python-2.x.但是,您的代码似乎是为python-3.x版本编写的。在python-2.x中,您需要使用raw_input
函数用于在python-3.x中使用input
的相同目的。你可以运行
$ python --version
要找出您默认使用的确切版本。