forked from juanjricci/trabajoAhorcado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.py
26 lines (23 loc) · 929 Bytes
/
menu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os
class Menu():
def titulo(self):
os.system('clear')
print("-------------------------------")
print("▄▀█ █ █ █▀█ █▀█ █▀▀ ▄▀█ █▀▄ █▀█")
print("█▀█ █▀█ █▄█ █▀▄ █▄▄ █▀█ █▄▀ █▄█")
print("-------------------------------")
print(" ***EL JUEGO DEL AHORCADO***")
print("-------------------------------")
print("1. Un jugador")
print("2. Dos jugadores")
print("3. Salir")
opcion = input("Elija una opcion: ")
os.system('clear')
if opcion == '1' or opcion == '2' or opcion == '3':
return int(opcion)
else:
return input(
"No es una de las opciones."
" Presiona ENTER para continuar..."
)
os.system('clear')