This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

17 lines
393 B
Python

f = open("score.txt","r")
scorelist = f.readlines()
f.close()
highscore=0
lowscore=100
for score in scorelist:
score=float(score)
if score>highscore:
highscore=score
if score<lowscore:
lowscore=score
print("The highest score is:",highscore)
print("The lowest score is:",lowscore)
f1 = open("score1.txt","w")
f1.write(str(highscore) +" " + str(lowscore))
f1.close()