13 lines
249 B
Python
13 lines
249 B
Python
class View:
|
|
"""Prompt menu, get choices"""
|
|
def __init__(self):
|
|
pass
|
|
|
|
def prompt_for_scores(self):
|
|
print()
|
|
input("Saisir les scores ?")
|
|
return True
|
|
|
|
def display_winner(self, participants):
|
|
pass
|