Write a code to calculate and …

CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Related Questions
Posted by Kandeepan Jothivel 1 year, 7 months ago
- 2 answers
Posted by Hanni Pham 1 year, 5 months ago
- 1 answers
Posted by Syedali Fathima 1 year, 6 months ago
- 1 answers
Posted by Hanni Pham 1 year, 5 months ago
- 0 answers
Posted by Prawar Narang 1 year, 7 months ago
- 1 answers
Posted by Priya Shukla 1 year, 6 months ago
- 1 answers

myCBSEguide
Trusted by 1 Crore+ Students

Test Generator
Create papers online. It's FREE.

CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
myCBSEguide
Preeti Dabral 4 years, 5 months ago
n = int(input("Enter the number of subjects: "))
l = list()
for i in range(n):
x = float(input("Enter the marks: "))
l.append(x)
print(l, "is the given list of marks.")
print()
tot = int(input("Enter the total marks of the test: "))
ntot = n*tot
ftot = sum(l)
print("Total marks: ", ftot)
print("Percentage: ", (ftot/ntot)*100)
0Thank You