Write a python
program to accept a student’s name and marks of 3 subjects through keyboard and display the total and percentage achieved by the student. (The maximum mark for each subject is 100)
Answers
Answered by
17
Answer:
I have written this program in python language(Please note)
name = input("Enter the name of the student : ")
print("Enter the marks of 3 subjects")
a = int(input("Enter the marks of subject 1 : "))
b = int(input("Enter the marks of subject 2 : "))
c = int(input("Enter the marks of subject 3 : "))
total = (a+b+c)
print("The total marks of the student is =" ,total)
Percentage = total/3
print("The percentage of the student in the exam is =" ,Percentage)
Please mark as brainliest answer if it is useful
Answered by
2
Answer:
I don't know the answer
sorry
Similar questions