私はPythonで無限のwhileループを作成することができました(ハイスコアビットを繰り返し表示し続けます)、それを修正するのに問題がありますか?
ハイスコアのビットの後にブレークインを追加したところ、無限ループが停止しましたが、0 を押さなくても、プログラムは、ユーザーが選択を確定したら、終了ボタンを押すように求めました。
#high scores
#demonstrates list methods
scores = []
choice = None
while choice != "0":
print(
"""
High Scores
0 - Exit
1 - Show Scores
2 - Add a Score
3 - Delete a Score
4 - Sort Scores
"""
)
choice = input("Choice: ")
print()
#exit
if choice == "0":
print("Goodbye")
#list high scores table
elif choice == "1":
print("High Scores")
for score in scores:
print(score)
#add a score
elif choice == "2":
score = int(input("What score did you get?: "))
scores.append(score)
#remove a score
elif choice == "3":
score = int(input("Remove which score?: "))
if score in scores:
scores.remove(score)
else:
print(score, "isn't in the high score list.")
#sort scores
elif choice == "4":
scores.sort(reverse=True)
#some unknown choice
else:
print("Sorry, but", choice, "isn't a valid choice.")
input("\nPress the enter key to exit.")
ありがとう。