Odpowiedź:
def oblicz_srednia():
ocena1 = float(input("Podaj pierwszą ocenę: "))
ocena2 = float(input("Podaj drugą ocenę: "))
ocena3 = float(input("Podaj trzecią ocenę: "))
srednia = (ocena1 + ocena2 + ocena3) / 3
print("Średnia ocen wynosi: " + str(srednia))
oblicz_srednia()
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
def oblicz_srednia():
ocena1 = float(input("Podaj pierwszą ocenę: "))
ocena2 = float(input("Podaj drugą ocenę: "))
ocena3 = float(input("Podaj trzecią ocenę: "))
srednia = (ocena1 + ocena2 + ocena3) / 3
print("Średnia ocen wynosi: " + str(srednia))
oblicz_srednia()