Python program to calculate student result based on 2 exams

 Python program to calculate student result based on 2 exams

The python language can be used in school works so as to calculate the marks based on two exams .
Code :-

x = input("Enter Marks of First Exam")
y=input("Enter Marks second Exam")
z = input("Enter Maximum Marks ")
print("x+y")



The code written here will print the result .
 
I hope it will help you ..