count=0
count2=0
print(header)
def countWord():
for i in f1sen:
count= len(re.findall(r'\w+', i)) #command to count all the words
print(i,"Number of words: ",count)
for j in f2sen:
count2= len(re.findall(r'\w+', j)) #command to count all the words
print(j,"Number of words: ",count2)
当我尝试执行它时,它会给我以下错误:
File "C:\Users\George\Documents\Programming for digital Humanities\Assignment 3\assig3.py3", line 48
for j in f2sen:
^
IndentationError: unindent does not match any outer indentation level
[Finished in 0.2s]
有人可以帮我解决这个问题吗? 谢谢
答案 0 :(得分:0)
我发现问题是什么。如果按下空格按钮以创建缩进,则按下选项卡会有所不同。我是python中的新手,所以我不知道它。因此,使用选项卡创建缩进而不是空格按钮,因为它看起来可能相同,但编译将其解释为错误