Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

name=input("Enter Fullname:")

course=input("Enter Course:")

year=input("Enter Year:")

schoolyear=input("Enter School Year:")

subject1=input("Enter Subject1:")

subject2=input("Enter Subject2:")

subject3=input("Enter Subject3:")

subject4=input("Enter Subject4:")

subject5=input("Enter Subject5:")

subject6=input("Enter Subject6:")

subject7=input("Enter Subject7:")

subject8=input("Enter Subject8:")

subject9=input("Enter Subject9:")

architecturaldrafting=int(input("Enter Architectural Drafting Score:"))

pe=int(input("Enter PE Score:"))

cad2=int(input("Enter Cad2 Score:"))

nationalbuildingcode=int(input("Enter National Building Code Score:"))

industrialoperationandmanagementpractices=int(input("Enter Industrial Operation Management


Practices Score:"))

filipino=int(input("Enter Filipino Score:"))

lifeandworksofrizal=int(input("Enter Life And Works Of Rizal Score:"))

thecontemporaryworld=int(input("Enter The Contemporary World Score:"))

computerprogramming=int(input("Enter Computer Programming Score:"))

average = (architecturaldrafting + pe + cad2 + nationalbuildingcode +


industrialoperationandmanagementpractices + filipino + lifeandworksofrizal + thecontemporaryworld +
computerprogramming) / 9
print("Name:"+name)

print("Course:"+course)

print("Year:"+year)

print("Schoolyear:"+schoolyear)

print("Subject1:"+subject1)

print("Subject2:"+subject2)

print("Subject3:"+subject3)

print("Subject4:"+subject4)

print("Subject5:"+subject5)

print("Subject6:"+subject6)

print("Subject7:"+subject7)

print("Subject8:"+subject8)

print("Subject9:"+subject9)

print("this is the average score:" +str(average))

You might also like