1.

Write a program in Python to accept Name of the student Marks of the student in the following 5 subjects (each out of 100) : English Hindi Mathematics Science Social Studies Find and display the following with appropriate messages: “ Hello! NAME OF THE STUDENT” Total marks obtained Percentage Average Marks obtained PLEASE ANSWER THIS QUESTION....

Answer» UT("Enter your name: ")eng = float(input("Enter your ENGLISH marks: "))hin = float(input("Enter your Hindi marks: "))math = float(input("Enter your Mathematics marks: "))sci = float(input("Enter your Science marks: "))sst = float(input("Enter your SOCIAL Science marks: "))TOTAL = eng + hin + math + sci + sstper = (total/500)*100avg = (total/5)print()print("Hello", n + '!')print("Total marks obtained: ", total)print("Percentage secured: ", per)print("Average marks obtained: ", AVG)


Discussion

No Comment Found