У меня есть текстовый файл, который содержит имя пользователя, пароль и наивысший балл пользователей, однако я хочу перезаписать их высокий балл при достижении высокого балла.Однако я хочу перезаписать только это конкретное значение, а не другие.
Это мой текстовый файл (называемый 'users.txt'):
david 1234abc 34 hannah 5678defg 12 conor 4d3c2b1a 21
Например, если Ханна получаетновая оценка 15, я хочу изменить 12 на 15
Вот что я пробовал в python:
# splitting the file
file = open("users.txt","r")
read = file.read()
users = read.split()
file.close()
# finding indexs for username, password and score
usernamePosition1 = users.index(user)
passwordPosition1 = usernamePosition1 + 1
scorePosition1 = passwordPosition1 + 1
file = open("users.txt","a")
# setting previous high score to an integer
player1OldScore = int(users[scorePosition1])
if player1Score > player1OldScore:
# setting in back to a str for text file
player1ScoreStr = str(player1Score)
# from here on i dont really know what i was doing
users.insert([scorePosition1],player1ScoreStr)
file.write(users)
print(player2 + "\n \nAchieved a new high score")
else:
print("\n \n" + player1 + " , you didn't achieve a new high score")
Извините, коды немного грязные, но я надеюсь, что кто-то можетПомогите.СПАСИБО В РАСШИРЕННОМ, codewizard