Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. scores = []
  2.  
  3. choice = None
  4. while choice != 0:
  5.  
  6. print(
  7. """
  8. 0 - zakończ
  9. 1 - wyswietl wyniki
  10. 2 - dosdaj wynik
  11. """
  12. )
  13.  
  14. choice = input("wybierasz: ")
  15. print()
  16.  
  17. #zakończ
  18. if choice == 0:
  19. print("Do widzenia")
  20.  
  21. #wyswietla tabele najlepszych wynikóœ
  22. elif choice == "1":
  23. print("Najlepsze wyniki\n")
  24. print("GRACZ\tWYNIK")
  25. for entry in scores:
  26. score, name = entry
  27. print(name, "\t", score)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement