0
所以我想在if語句中使用來自文本文件某一行的數據。這就是我所擁有的,即使文本文件的第2行設置爲「off」或「on」,也不會發生任何事情。Python - 從文本文件中讀取字符串
gamestatus = linecache.getline('C:/directory/gameinfo.txt', 2)
if gamestatus == 'off':
print("Test")
elif gamestatus == 'on':
print("Another test")
但是,如果我不喜歡的東西 打印(gamestatus) 而不是在一個if語句,它打印「關閉」或「開」。有任何想法嗎?
向我們展示一個文本文件的示例 – TisteAndii