Odpowiedź:
name = input("Podaj imię ")
a = int(input("Podaj ocenę z polskiego "))
b = int(input("Podaj ocenę z matematyki "))
c = int(input("Podaj ocenę z angielskiego "))
average = (a + b + c) / 3
print(f"{name} Twoja średnia wynosi {average}")
Wyjaśnienie:
Jak coś to pytaj :)