模块 * 没有属性 * 使用 nosetests
Module * has no attribute * using nosetests
我完成了“Python Learn Hard Way”一书中的任务。它是关于使用 nose
的测试。
我在 lexicon.py
文件中有函数 scan_net
:
def scan_net(sentence):
direction = ['north', 'south', 'east', 'west']
verb = ['go', 'kill', 'eat', 'breath']
stop_words = ['the', 'in', 'off']
nouns = ['bear', 'princess', 'frog']
words = sentence.split()
result = []
for i in range(len(words)):
if words[i] in direction:
result.append(('direction', words[i]))
elif words[i] in verb:
result.append(('verb', words[i]))
elif words[i] in stop_words:
result.append(('stop_words', words[i]))
elif words[i] in nouns:
result.append(('nouns', words[i]))
#check for number and if it is go out of the loop using continue
try:
if(int(words[i])):
result.append(('number', words[i]))
continue
except ValueError:
pass
else:
result.append(('error', words[i]))
return result
这是我的测试文件:
from nose.tools import *
import lexicon
def test_directions():
result = lexicon.scan_net("north south east")
assert_equal(result, [('direction', 'north'),
('direction', 'south'),
('direction', 'east')])
在我 运行 nosetests tests\lexicon_tests.py
命令之后我得到
AttributeError:module 'lexicon' has no attribute 'scan_net'
.
我的导入有什么问题?为什么它看不到函数 scan_net
?
您的路径中可能有一个名为 lexicon
的文件夹,这是首选文件夹,应该重命名其中一个文件夹,以便更清楚地说明应该导入哪个文件夹。
您应该仍然可以使用 from lexicon import scan_net
导入,但通常使用不同的名称会使您的生活更轻松。
见Python Import Class With Same Name as Directory
我完成了“Python Learn Hard Way”一书中的任务。它是关于使用 nose
的测试。
我在 lexicon.py
文件中有函数 scan_net
:
def scan_net(sentence):
direction = ['north', 'south', 'east', 'west']
verb = ['go', 'kill', 'eat', 'breath']
stop_words = ['the', 'in', 'off']
nouns = ['bear', 'princess', 'frog']
words = sentence.split()
result = []
for i in range(len(words)):
if words[i] in direction:
result.append(('direction', words[i]))
elif words[i] in verb:
result.append(('verb', words[i]))
elif words[i] in stop_words:
result.append(('stop_words', words[i]))
elif words[i] in nouns:
result.append(('nouns', words[i]))
#check for number and if it is go out of the loop using continue
try:
if(int(words[i])):
result.append(('number', words[i]))
continue
except ValueError:
pass
else:
result.append(('error', words[i]))
return result
这是我的测试文件:
from nose.tools import *
import lexicon
def test_directions():
result = lexicon.scan_net("north south east")
assert_equal(result, [('direction', 'north'),
('direction', 'south'),
('direction', 'east')])
在我 运行 nosetests tests\lexicon_tests.py
命令之后我得到
AttributeError:module 'lexicon' has no attribute 'scan_net'
.
我的导入有什么问题?为什么它看不到函数 scan_net
?
您的路径中可能有一个名为 lexicon
的文件夹,这是首选文件夹,应该重命名其中一个文件夹,以便更清楚地说明应该导入哪个文件夹。
您应该仍然可以使用 from lexicon import scan_net
导入,但通常使用不同的名称会使您的生活更轻松。
见Python Import Class With Same Name as Directory