-
Notifications
You must be signed in to change notification settings - Fork 0
/
Menu.py
51 lines (41 loc) · 1.35 KB
/
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
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
from Lector import captureRute
from Lector import parsexml
def menu():
print("Practica 1")
print("-----------------")
print("1.- Cargar archivo")
print("2.- Procesar archivo")
print("3.- Escribir archivo de salida")
print("4.- Mostrar datos del estudiante ")
print("5.- Generar grafica")
print("6.- Salir")
opcion = input()
return opcion
def menuP():
matrices = None
while True:
opcion = menu()
if opcion == '1':
ruta = captureRute()
matrices = parsexml(ruta)
matrices.mostrar()
elif opcion == '2':
if matrices != None:
print(matrices.reducir())
else:
print("Error, un no has cargado un archivo")
#if opcion == '3':
if opcion == '4':
print("KEVIN RAUL POZUELOS")
print("CARNE: 201800992")
print("Introduccion a la programacion y computacion 2 Seccion: ""A""")
print("Ingenieria en Ciencias y Sistemas")
print("4to Semestre")
elif opcion == '5':
matrices.mostrarnom()
busqueda = input('Ingrese nombre de matriz a buscar: ')
grafico = matrices.graph(matrices, busqueda)
if not grafico:
print("Ha ocurrido un problema")
if opcion == '6':
break