主要目標: 函數從文本文件中讀取最高分數。 要傳遞到函數的參數: 文本文檔!Python /函數參數
def highscore():
try:
text_file = open ("topscore.txt", "r")
topscore = int(text_file.read())
print topscore
text_file.close()
return topscore
except:
print "Error - no file"
topscore = 0
return topscore
如何添加文本文件作爲參數?
你想傳遞一個路徑字符串,並有此功能打開文件,或者你想傳遞一個文件對象,並有該功能操作? – dcolish
我真的不明白如何能夠編寫現有的代碼並讓它工作,而不必自己回答問題。 –