Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python coding problem. # let us write a function find_grade(total) # which will take your course total (0-100), and output the letter grade (see your

Python coding problem.

# let us write a function find_grade(total)

# which will take your course total (0-100), and output the letter grade (see your syllabus)

# have a habbit of putting in the docstring

total = 62.1

def find_grade(total):

# write an appropriate and helpful docstring

# ?????? fill in your codes here, be sure you have all A, A-, ... thru D, and F grades completed.

# grade = ???

return grade

# Try:

print(find_grade(total))

# Also answer these:

# What is the input (function argument) data type for total?

# What is the output (function return) data type for find_grade(total) ?

image text in transcribed

###################################### 01 ############################### # let us write a function find_grade (total) # which will take your course total (0-100), and output the letter grade (see your syllabus) # have a habbit of putting in the docstring total = 62.1 def find_grade (total): # write an appropriate and helpful docstring # ?????? fill in your codes here, be sure you have all A, A-, ... thru D, and F grades completed. # grade = ??? return grade # Try: print(find_grade (total)), # Also answer these: # What is the input (function argument) data type for total? # What is the output (function return) data type for find_grade(total)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Science For Dummies

Authors: Lillian Pierson ,Jake Porway

2nd Edition

1119327636, 978-1119327639

More Books

Students also viewed these Databases questions

Question

2. 13410 b. 3940 C. 51,400 d. 51,010

Answered: 1 week ago