Skip to content

Commit

Permalink
Mini Desafio 3 corregido.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaidevOficial committed Nov 22, 2020
1 parent 7891062 commit 0734b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mini_Desafios/C3_Desafios/3_A.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
rd = pd.read_excel("Datos.xlsx")

def aprobadosMatematica():
aprobados = rd[rd["Matematica"]>4]
aprobados = rd[rd["Matematica"]>=4]
promedios = (aprobados["Matematica"] + aprobados["Quimica"] + aprobados["Fisica"])/3
print(promedios)

Expand Down

0 comments on commit 0734b1e

Please sign in to comment.