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