Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Grades Code":
#1
I'm new to Python and can't figure out what is wrong with this code?

print("please enter your 5 marks below")

#read 5 inputs
mark1 = int(input("enter mark 1: "))
mark2 = int(input("enter mark 2: "))
mark3 = int(input("enter mark 3: "))
mark4 = int(input("enter mark 4: "))
mark5 = int(input("enter mark 5: "))

#create array/list with five marks
marksList = [mark1, mark2, mark3, mark4, mark5]

#print the array/list
print(marksList)

#calculate the sum and average
sumOfMarks = sum(marksList)
averageOfMarks = sum(marksList)/5

#display results
print("The sum of your marks is: "+str(sumOfMarks))
print("The average of your marks is: "+str(averageOfMarks))
buran write Nov-22-2023, 04:10 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Reply


Messages In This Thread
Grades Code": - by Anthony - Nov-22-2023, 03:58 AM
RE: Grades Code": - by rob101 - Nov-22-2023, 08:05 AM
RE: Grades Code": - by buran - Nov-22-2023, 08:07 AM
RE: Grades Code": - by buran - Nov-22-2023, 08:09 AM
RE: Grades Code": - by rob101 - Nov-22-2023, 08:29 AM
RE: Grades Code": - by perfringo - Nov-22-2023, 12:30 PM
RE: Grades Code": - by rob101 - Nov-22-2023, 01:47 PM
RE: Grades Code": - by Anthony - Nov-22-2023, 09:53 PM
RE: Grades Code": - by rob101 - Nov-22-2023, 10:30 PM
RE: Grades Code": - by Anthony - Nov-23-2023, 02:51 AM
RE: Grades Code": - by Anthony - Nov-23-2023, 02:54 AM
RE: Grades Code": - by Anthony - Nov-23-2023, 09:44 PM
RE: Grades Code": - by buran - Nov-23-2023, 03:59 AM
RE: Grades Code": - by rob101 - Nov-23-2023, 05:37 AM
RE: Grades Code": - by buran - Nov-24-2023, 07:41 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Calculate median for school grades per subject siki 1 2,000 May-10-2021, 11:41 AM
Last Post: jefsummers
  python program that calculat grades of students biligorm 3 2,344 Apr-04-2020, 10:11 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020