我對此感到ban as不安,因爲這段代碼插入兩條新線而不是一條。有人可以幫忙嗎?兩條新線代替一條
file=open('16052013')
for line in file:
line=line.strip()
splitLine=line.split("\t")
strSentence=splitLine[2]
caseId=splitLine[0]
for word in strSentence.split():
word=word.strip()
print caseId,'\t',word
print '\n'
將'print'\ n''改爲'print' – wim
'print'會自動換行。如果你不想換行,你可以在'print'後添加'逗號'。只需'print xxx,' –
你應該避免使用標識符「file」,因爲它影響內建:http://docs.python.org/2/library/functions.html?highlight=file#file – Francesco