Tidy up 'Another mission?' message

This commit is contained in:
Bernard Cooke
2022-01-14 01:31:27 +00:00
parent cf55a5f637
commit 11ffe9cf90

View File

@@ -174,4 +174,4 @@ if __name__ == "__main__":
again = True
while again:
play_game()
again = True if input("ANOTHER MISSION (Y OR N)").upper() == "Y" else False
again = True if input("ANOTHER MISSION? (Y OR N): ").upper() == "Y" else False