-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript2.py
36 lines (27 loc) · 1007 Bytes
/
script2.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
import sys
# Validar cantidad de argumentos
if len(sys.argv) == 3:
nota1 = sys.argv[1]
nota2 = sys.argv[2]
if not nota1.isdigit() or not nota2.isdigit():
print("Cuidado! Debes pasarme solo numeros")
sys.exit()
nota1 = int(nota1)
nota2 = int(nota2)
if (0 <= nota1 <= 10) and (0 <= nota2 <= 10):
if nota1 >= 7 and nota2 >= 7:
print("Promocionado")
elif nota1 >= 4 and nota2 >= 4:
print("Aprobado, debe rendir final")
elif (nota1 < 4 and nota2 >= 4) or (nota1 >=4 and nota2 < 4):
if nota1 < 4:
print("Desaprobado, debe recuperar el primer parcial")
else:
print("Desaprobado, debe recuperar el segundo parcial")
else:
print("Desaprobo ambos parciales, debe recursar.")
else:
print("Error: Notas fuera de rango")
sys.exit()
else:
print("Uso: python aprobado.py <nota1> <nota2>")