''' Data class'''
import os.path
from random import Random
class TestData(object, Random):
def FetchDataFromFile(self, filename):
""" Open the file as read only """
myfile = open(os.path.join(os.getcwd(),filename), 'r')
""" read the information in the file """
lines = myfile.read()
''' Remove the header as this will not be used '''
header = lines[0]
lines.remove(header)
return lines
我正进入(状态:
ImportError:没有名为路径的模块
文件“ pyclasspath /Lib/Testdata.py”,第 2 行,在
os.path 在我的项目中的所有其他类中工作。有人能指出我在做什么错误吗?
我将此文件从一个目录移动到另一个目录。除此之外,这个类和其他类没有区别。