Computegrade in python | Computer Science homework help

Rewrite the grade program from the previous chapter using a function called computegrade that takes a score as its parameter and returns a grade as a string.

Score

Grade

> 0.9

A

> 0.8

B

> 0.7

C

> 0.6

D

<= 0.6

F

 

HINT:

1.     Write a custom function with the definition def computegrade(<your score variable>):

2.     The function should compute the grade using the score variable based on the table above. You can use if-elif statements to accomplish this

3.     Ensure your function has a “return” statement to return the computed grade back to the calling program

4.     Once the function is defined, proceed to writing the part of the program that takes in user input for score.

5.     Validate that the score is numeric within a try-except block.

6.     Invoke the above-defined computegrade function with the user-supplied score. Ensure you capture the return value within your program into a variable placeholder, or else use the print statement to print the return value directly

7.     Be sure to comment your program adequately!

8.     Remember your Python code will be graded according to our class Rubric.

9.     Submit your Python code file.  Name it “XXXX-score-function.py” where XXXX is your name. 

10.  Submit also a Word document showing screen shots of the various testing conditions.  Good programmers test all cases, so you should make sure you show tests for each possible grade level (A through F) plus error messages.

 

here is the code I did. run it, it works.

just need to reflect the computegrade and make that work too

 

# Given a given a numerical grade between 0.0 and 1.0

#This program converts the numerical score in letter grade.

 

#Prompt user for score between 0.0 and 1.0

prompt1 = “Please enter a score between 0.0 and 1.0: “

 

#convert input to float, because the input statement accepts user input as a string by default

#Wrap within a try-except code block to exit gracefully as the conversion will fall if the user supplied a non-numeric input!

try:

  score = input (prompt1)

  score = float(score)

 

#Print the result

  if score <=1.0:

   if 0.9 <= score <= 1.0:

      print(“Your grade is an A”)

   elif score >= 0.8:

      print(“Your grade is a B”)

   elif score >= 0.7:

      print(“Your grade is a C”)

   elif score >= 0.6:

      print(“Your grade is a D”)

   elif score <  0.6:

      print(“Your grade is an F”)

 

 

  else:   

   print (“Error, score cannot be greater than 1.0”)

except:

   print (“Error, please enter a number”)

 

 

#End of Script

 







Calculate Your Essay Price
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more

Order your essay today and save 10% with the coupon code: best10