DEV Community

Cover image for Python3 Programming - Exercise 5 c - Implement Solution
Michael Otu
Michael Otu

Posted on • Updated on

Python3 Programming - Exercise 5 c - Implement Solution

Implementation of a solution

In this stage, we write the code based on the design and then go further on to test and debug our code. We are going to change the design to a valid Python code.

Solution Design

Code 1

Let's start by initializing some variables a few.

# The inputs
totalNumberStudent = 5

# the scores of the five students
# our listOfScore
s1 = 40
s2 = 78
s3 = 91
s4 = 59
s5 = 12

overallScore = 100

Enter fullscreen mode Exit fullscreen mode

We have the individual scores and the overall score. We could have used a list. Try to read ahead and look at list and list indexing. Now let's deal with the scores above the average score.

# sum of all the elements in listOfScore
sumOfScores = s1 + s2 + s3 + s4 + s5

# the average
averageOfScores = sumOfScores / totalNumberStudent

# the number of students who had a score greater than the average
# initialize two variables, numberAboveAverage and numberBelowAverage to zero
# compare each student score with the average
# if the score is greater than the average, add one to numberAboveAverage else 
# (it may mean is equal to or less than) do nothing here.

numberAboveAverage = 0

if s1 > averageOfScores:
    numberAboveAverage += 1

if s2 > averageOfScores:
    numberAboveAverage += 1

if s3 > averageOfScores:
    numberAboveAverage += 1

if s4 > averageOfScores:
    numberAboveAverage += 1

if s5 > averageOfScores:
    numberAboveAverage += 1
Enter fullscreen mode Exit fullscreen mode

We'd do the same for finding the scores below the average score.

numberBelowAverage = 0

if s1 < averageOfScores:
    numberBelowAverage += 1

if s2 < averageOfScores:
    numberBelowAverage += 1

if s3 < averageOfScores:
    numberBelowAverage += 1

if s4 < averageOfScores:
    numberBelowAverage += 1

if s5 < averageOfScores:
    numberBelowAverage += 1

# the outputs
print("The sum of all the scores is", sumOfScores)
print("The average score is", averageOfScores)
print(numberAboveAverage, "scored above average")
print(numberBelowAverage, "scored below average")

Enter fullscreen mode Exit fullscreen mode

Code 2

We'd make use of list and for loop approach here. I whole idea is the same. The huge difference is that, we, the developers or engineers, don't have to write a lot to achieve a little.

# The inputs
totalNumberStudent = 5

# the scores of the five students
# here we use a data structure known as a list
# compare this to the other, s1, s2, s3, s4, s5
# which is simpler
listOfScore = [40, 78, 91, 59, 12]

overallScore = 100

# sum of all the elements in listOfScore
# We will use a loop and initialize sumOfScores to zero
sumOfScores = 0

for score in listOfScore:
    sumOfScores += score

# the average
averageOfScores = sumOfScores / totalNumberStudent

# the number of students who had a score above than the average
# initialize two variables, numberAboveAverage and numberBelowAverage to zero
# compare each student score with the average
# if the score is greater than the average, add one to numberAboveAverage
# else (it may mean is equal to or less than) so we check if it is less than
# else it will be equal, which is of no interest to do nothing.
# we will use a loop here also

numberAboveAverage = 0
numberBelowAverage = 0

for score in listOfScore:
    if score > averageOfScores:
        numberAboveAverage += 1

    if score < averageOfScores:
        numberBelowAverage += 1

# the outputs
print("The sum of all the scores is", sumOfScores)
print("The average score is", averageOfScores)
print(numberAboveAverage, "scored above average")
print(numberBelowAverage, "scored below average")
Enter fullscreen mode Exit fullscreen mode

Practicals

Implement the design from the practicals in exercise 5 b (Design of a solution)

Summary

  • Implementation phase is where we code the design from the analysis
  • Implementation is not the last phase of software development
  • We have to test, maintain and document our programs to make the software

Top comments (0)