generated from microsoft/vscode-remote-try-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.py
58 lines (49 loc) · 1.37 KB
/
program.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Task 1
global HighScore
HighScore = [["",0] for i in range(10)]
# Task 2
def ReadHighScores():
f = open("HighScore.txt", "r")
for i in range(0,10):
HighScore[i][0]=f.readline()[:-1]
HighScore[i][1]=f.readline()[:-1]
# Task 3
def OutputHighScores():
for i in range(len(HighScore)):
print(HighScore[i])
# Task 4
#ReadHighScores()
#OutputHighScores()
# Task 5
while True:
playername = input("Please input the player name:")
if len(playername) != 3:
print("The inputted player name is longer than 3, please try again..")
continue
score = int(input("Please input the player score:"))
if score > 100000:
print("The inputted score is too high! Please try again..")
continue
break
# Task 6
def calculate_top():
if score > int(HighScore[len(HighScore)-1][1]):
NewHighScore=HighScore
NewHighScore.append([playername,score])
for i in range(len(HighScore)-2,-1,-1):
if score > int(NewHighScore[i][1]):
temp = NewHighScore[i]
NewHighScore[i]=NewHighScore[i+1]
NewHighScore[i+1]=temp
else:
NewHighScore.pop()
break
return NewHighScore
else:
return False
# Task 7
ReadHighScores()
OutputHighScores()
NewHighScore = calculate_top()
print(NewHighScore)
# Task 8 Final