-
Notifications
You must be signed in to change notification settings - Fork 0
/
Datos.py
59 lines (45 loc) · 1.77 KB
/
Datos.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import datetime, time
from tkinter import *
##SEBASTIAN GUANDINANGO
import time
from tkinter import messagebox
def crerar_archivo(nombre,tiempo,nomimag,fecha):
print('Mi mimbre:',nombre)
print('Su tipo es:', tiempo)
fout = open("registros.txt", "w")
fout.write('JUGADOR : '+nombre+'\n')
fout.write('TIEMPO : ' + tiempo + '\n')
fout.write('NOMBRE DE LA IMAGEN : ' + nomimag + '\n')
fout.write('FACHA : ' + fecha + '\n')
fout.close()
def iniciar(contador=2):
proceso = 2
time['text'] = contador
proceso = time.after(1000, iniciar, (contador - 1))
if (contador == 0):
time.after_cancel(proceso)
v = Tk()
v.title("Image Play")
v.configure(background="black")
v.geometry("300x100")
lbl = Label(v, text=" ** You Lost ** ",font=("", "30"),background="black")
lbl.grid(column=0, row=0)
v.mainloop()
def ventana( n,d,g,j, title):
v = Tk()
v.title("Image Play")
v.configure(background="black")
v.geometry("300x200")
lbl = Label(v, text=title, font=("", "30"), fg="orange", background="black").place(x=30, y=10)
lbl = Label(v, text="JUGADOR : " + n, fg="orange", background="black").place(x=30, y=60)
lb = Label(v, text="IMAGEN : " + d, fg="orange", background="black").place(x=30, y=80)
l = Label(v, text="TIEMPO : " + g, fg="orange", background="black").place(x=30, y=100)
k = Label(v, text="FECHA : " + j, fg="orange", background="black").place(x=30, y=120)
v.resizable(0, 0)
def comparar( respuesta, monim):
if (respuesta.lower()==monim.lower()):
#datos.crerar_archivo(jugador, contador, imnom, fecha)
#datos.ventana(jugador, imnom, contador, fecha, "Winenr")
print("es corecto")
else:
print("intentelo denuevo")