我在Python 3.3.2中遇到了这两个错误:
import os
path="D:\\Data\\MDF Testing\\MDF 4 -Bangalore\\Bangalore Testing"
os.chdir(path)
for file in os.listdir("."):
if file.endswith(".doc"):
print('FileName is ', file)
def testcasenames(file):
nlines = 0
lookup="Test procedures"
procnames=[]
temp=[]
'''Open a doc file and try to get the names of the various test procedures:'''
f = open(file, 'r')
for line in f:
val=int(nlines)+1
if (lookup in line):
val1=int(nlines)
elif(line(int(val))!=" ") and line(int(val1))==lookup):
temp=line.split('.')
procnames.append(temp[1])
else:
continue
return procnames
filename="MDF_Bng_Test.doc"
testcasenames(filename)
Traceback (most recent call last):
File "D:/Data/Python files/MS_Word_Python.py", line 34, in <module>
testcasenames(filename)
File "D:/Data/Python files/MS_Word_Python.py", line 25, in testcasenames
elif(line(val)!=" " and line(val1)==lookup):
TypeError: 'str' object is not callable
我的想法是在我在测试文档文件(MDF_Bng_Test.doc)中循环时获得“测试程序”部分之后才获取测试过程名称,之后我复制所有测试过程名称(T_Proc_2.1,S_Proc_2) .2 ......)在它之下。
例如:
1.1.1 Test objectives
1.Obj 1.1
2.Obj 1.2
3.Obj 1.3
4.Obj 1.4
**2.1.1 Test procedures
1.T_Proc_2.1
2.S_Proc_2.2
3.M_Proc_2.3
4.N_Proc_2.4**
3.1.1 Test References
1.Refer_3.1
2.Refer_3.2
3.Refer_3.3
答案 0 :(得分:1)
当您将()
与line
一起使用时,它认为line
是一个实际上不是的函数。您实际需要使用的是[]
符号
line[int(val)]!=" " and line[int(val1)]==lookup
答案 1 :(得分:1)
问题出在这一行:
elif(line(int(val))!=" ") and line(int(val1))==lookup):
如果您尝试索引字符串,Python使用方括号表示法([]
)来完成它,它将是这样的:
elif(line[int(val)]!=" ") and line[int(val1)]==lookup):
另一个建议是,Python中的括号if..else
语句是可选的,通常没有它们的代码看起来更好:
elif line[int(val)]!=" " and line[int(val1)]==lookup:
希望这有帮助!