-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
20 lines (18 loc) · 878 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# import functions of file functions
from functions import *
#input to insert name of the player with control input (error message if name is none)
name_player = input("Merci de renseigner votre nom: ").upper()
while len(name_player) == 0:
print("Vous n'avez rien renseigné")
name_player = input("Merci de renseigner votre nom\n: ").upper()
#print message to welcome and to explain the choices values
print("********Bienvenue {} sur le jeu SHIFUMI!*********\n".format(name_player))
print("Pour choisir PIERRE, FEUILLE ou CISEAUX, veuillez taper la première lettre de votre choix (P, F ou C)\n")
#loop for replaying each time after a input
play_again = True
while play_again:
game()
Replay=input("Taper R pour rejouer une partie ou 'Q' pour quitter ").lower()
if Replay =='q':
play_again = False
print("Merci et à bientôt sur SHIFUMI!")