-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.py
60 lines (54 loc) · 1.26 KB
/
variables.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
58
59
60
buttons = [] # Lista que guarda elementos creados para despues ser borrados al cambiar de seccion
ventanas = [] # Lista de ventanas
buttons_ventana = [] # Lista de los botones creados para las ventanas o frames
def EliminarBotones(b):
for k in b:
k.destroy()
b[:] = []
def EliminarVentanas(v):
for k in v:
k.destroy()
k.quit()
v[:] = []
def DiaSemana(id):
if id == 1:
return 'Lunes'
elif id == 2:
return 'Martes'
elif id == 3:
return 'Miercoles'
elif id == 4:
return 'Jueves'
elif id == 5:
return 'Viernes'
elif id == 6:
return 'Sabado'
def MesAnyo(id):
if id == '01':
return 'Enero'
elif id == '02':
return 'Febrero'
elif id == '03':
return 'Marzo'
elif id == '04':
return 'Abril'
elif id == '05':
return 'Mayo'
elif id == '06':
return 'Junio'
elif id == '07':
return 'Julio'
elif id == '08':
return 'Agosto'
elif id == '09':
return 'Septiembre'
elif id == '10':
return 'Octubre'
elif id == '11':
return 'Noviembre'
elif id == '12':
return 'Diciembre'
def xstr(s):
if s is None:
return ''
return str(s)