Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Grades Code":
#2
Anthony.
What would you like to change? Or are you simply looking for a better way to write that script?

The first thing to note is this: whenever you see repetitive code lines, it's a sure thing that you need a code loop.

There's a few different ways in which this can be coded, but let's stay with the list object. You need a list of five values, so that's what your loop should do:

print("please enter your 5 marks below")

# create an empty array
marksList = []

# populate it
while len(marksList) != 5:
    entry = len(marksList) + 1
    mark = int(input(f"enter mark {entry}: "))
    marksList.append(mark)
From here, well please post back, so that we can move this forward. I have to be FAK for a few hours, but I'm sure that someone else will pick this up. If not, I will pick it up when I get done with other things.
Sig:
>>> import this

The UNIX philosophy: "Do one thing, and do it well."

"The danger of computers becoming like humans is not as great as the danger of humans becoming like computers." :~ Konrad Zuse

"Everything should be made as simple as possible, but not simpler." :~ Albert Einstein
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