-
Notifications
You must be signed in to change notification settings - Fork 0
/
diario.py
67 lines (51 loc) · 1.68 KB
/
diario.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
61
62
63
64
65
66
67
# -*- coding: utf-8 -*-
"""
Created on Thu Nov 12 09:31:29 2020
@author: jmlop
"""
import pandas as pd
import openpyxl as xl
import xlsxwriter
import os.path
import datetime
def menu():
veces = 0
entrada = {'nombre':[],'fecha':[],'animo':[]}
while True:
print(" Diario \n__________________________")
print("[1] Crear entrada\n[2] Ver entradas previas\n[3] Ver promedio de ánimo\n[0] terminar")
try:
p = int(input("Qué desea hacer?\n"))
except:
print("Entrada invalida.")
if p >= 0 and p < 4 and (type(p) is int):
if p == 1:
crearE(veces, entrada)
veces += 1
elif p == 2:
verE(entrada)
elif p == 3:
print(prom(entrada))
elif p == 0:
break
else:
print("Ingrese una opción válida")
def crearE(x:int, entrada : {}):
entrada['nombre'].append(input("Ingrese su nombre completo:\n"))
entrada['fecha'].append(datetime.datetime.now())
entrada['animo'].append(int(input("Del 1 al 10 ¿Cómo se siente hoy?\n")))
def verE(entrada : {}):
n, f, a, s = entrada['nombre'], entrada['fecha'], entrada['animo'], ""
for i in range(len(n)):
s = "Nombre: " + n[i] + " Fecha: "+ str(f[i]) + " Nivel de ánimo: " + str(a[i])
print(s)
def prom(entrada) :
ac = 0
if len(entrada['animo']) > 0:
for i in entrada['animo']:
ac += i
ac = ac / len(entrada['animo'])
return "El promedio de sus entradas de ánimo es " + str(ac)
else:
return("No hay registros")
menu()