-3
當我使用下面的python代碼來處理right.txt
和wrong.txt
,雖然看起來完全一樣,但是wrong.txt
不能運行。這是縮進問題嗎?python錯誤的文件格式導致解壓錯誤
我的代碼是在這裏:
import re
if __name__ == '__main__':
with open('wrong.txt') as fin:
text = fin.read()
l = [p for p in text.split('\nSentence #') if p]
for p in l:
lines, deps = tuple(p.split('\n\n')[:2])
right.txt:
Sentence #1 (33 tokens):
introduction.
[Text=. CharacterOffsetBegin=208 CharacterOffsetEnd=209 PartOfSpeech=. Lemma=.]
(ROOT
(. .)))
root(ROOT-0, stored-18)
wrong.txt:
Sentence #1 (33 tokens):
introduction.
[Text=. CharacterOffsetBegin=208 CharacterOffsetEnd=209 PartOfSpeech=. Lemma=.]
(ROOT
(. .)))
root(ROOT-0, stored-18)
爲什麼不粘貼文件的內容的權利* *在這裏? – luoluo
太長了。我提供了一個鏈接,可以打開嗎? –
提供文件的*相關*部分(可能兩者);每一行只有幾行可能會顯示出不同。 – Evert