Advertisement
teslariu

Untitled

Jan 4th, 2021
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.03 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. """ Programa de administración de alumnos    
  5. """
  6. lista = []
  7.  
  8. print("Administración de alumnos")
  9. print("-------------------------")
  10.  
  11. while True:
  12.     print("""\nMenú de opciones:
  13.    1. Calificar alumnos
  14.    2. Ver calificaciones
  15.    3. Salir""")
  16.    
  17.     opcion = input("Seleccione su opción: ")
  18.    
  19.     if opcion == "1":
  20.         nombre = input("Ingrese el nombre del alumno: ") # manuel alvear
  21.         nota = input("Ingrese su nota: ")     # 9
  22.         alumno = [nombre, nota]  # alumno = ["manuel alvear", "9"]
  23.         lista.append(alumno)  # lista = [["manuel alvear", "9"],....]
  24.        
  25.     elif opcion == "2":
  26.         if len(lista) == 0:
  27.             print("No hay ningún alumno ni nota cargada")
  28.         else:
  29.             for nombre, nota in lista:
  30.                 print(f"El alumno {nombre} tiene la nota {nota}")
  31.            
  32.     elif opcion == "3":
  33.         print("Hasta luego....")
  34.         break
  35.        
  36.     else:
  37.         print("Opción incorrecta...")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement