如何從文件中的一行中只取一個單詞並將其保存在某個字符串變量中? 例如,我的文件有一行「this,line,is,super」,我想只在可變字中保存第一個單詞(「this」)。我試圖逐字逐字閱讀「,」但是當我檢查它時,我收到了一個錯誤「類型'int'的參數不可迭代」。我怎樣才能做到這一點?只能從行中獲取一個字
line = file.readline() # reading "this, line, is, super"
if "," in len(line): # checking, if it contains ','
for i in line:
if "," not in line[i]: # while character is not ',' -> this is where I get error
word += line[i] # add it to my string
謝謝你解釋我的錯誤。 :)並感謝你更多的調整你的解決方案,我的想法。 – Halep