0
El ejercicio 22.3 da error
El compilador de la app resuelve con error el problema de los descuentos de matrĂcula
7 Answers
0
22.3? De que curso? PodrĂas guardar y compartir el cĂłdigo en cuestiĂłn?
0
Q. Exercise 22.3 gives an error
The app compiler solves the problem of tuition discounts with error
A. We dont know whats that problem and from which course it is from, edit this question and attach that problem with your try.
0
Python Core course: practice 22.3.
You need to comment or remove the first line, name=input()
Comenta o borra la primer lĂnea, la que dice name=input()
Y la prĂłxima aclara de que curso hablas, cuĂĄnto mĂĄs informaciĂłn nos des, mĂĄs fĂĄcil serĂĄ ayudarte!
0
Del curso Python Core
0
Escribo el cĂłdigo:
0
name = input()
sem1_score = int(input())
sem2_score = int(input())
#tu cĂłdigo va aquĂ
#nota=(sem1_score + sem2_score )/2
data= [sem1_score, sem2_score]
nota= sum(data)/len(data)
if (nota>=90 and nota <=100):
print ("50")
elif (nota>=80 and nota <=89):
print ("30")
elif (nota>=70 and nota <=79):
print ("10")
else:
print ("0")
0
Ya te dije, elimina la primera linea, name=input()
otra cosita, No necesitas evaluar si es mayor que y menor que en cada if.. si no entro en el primero, ya sabes que es menor a 90, no hace falta que "preguntes" denuevo en el siguiente, lo mismo para el Ășltimo if