我有一個程序來存儲人名和他們的分數,在Python中的文本文件。追加到txt文件中的現有行
例如這是我的當前代碼:
name = input("Name: ")
score = input("Score: ")
file_name = "student_scores.txt"
file = open(file_name , 'a')
file.write(str(name) + ", " + str(score) + "\n")
file.close()
輸出txt文件是,(名稱= BOB)和(評分= 1):
bob, 1
當我進入另一個得分( 2)同一個人(BOB)txt文件看起來是這樣的:
bob, 1
bob, 2
但是我怎樣才能改變我的代碼,這樣txt文件LO如下所示:
bob, 1, 2