Computer Science, asked by introlacabal, 7 months ago

Given a student’s name and three test scores (of type int), print the student’s name and average test score - printStudentDetails.

Answers

Answered by udaiusainzoher
0

Answer:

Ben Price (born 30 June 1972) is a British actor, director and writer. He has played the role of Nick Tilsley in the ITV soap opera, Coronation Street and made three films as a writer/director, the first of which, I'm Sorry To Tell You, was BAFTA short-listed

Answered by karanlunia01
0

Explanation:

name=input("Enter the name:")

a=int(input("Enter the mark:"))

b=int(input("Enter the mark:"))

c=int(input("Enter the mark:"))

print(name)

print(a+b+c/3)

Similar questions