Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Most learning management systems (Blackboard, Brightspace, etc.) have a feature where grades can be expressed as either percentages or letters. This experience will ask for
Most learning management systems (Blackboard, Brightspace, etc.) have a feature where grades can be expressed as either percentages or letters. This experience will ask for a percentage and - using the table found in the specifications - return the corresponding letter grade. SPECIFICATIONS - Starter code has been provided for this lab. - Add a comment with your name, date, and program description at the top! - Your output must match the Sample Output exactly. - Using mathematical bracket notation where [...] means inclusive and (...) means exclusive, the scale is below. As an example, the grade 70 would be converted to a C. \begin{tabular}{|c|c|} \hline Grade Range & Letter \\ \hline Below 65 & F \\ \hline[65,70) & D \\ \hline[70,80) & C \\ \hline[90,100) & B \\ \hline[80,90) & A \\ \hline Above 100 & A+ \\ \hline \end{tabular} ==== Grade Converter ===== Enter a numerical grade (1-100): 101 A+ ==== Grade Converter ===== Enter a numerical grade (1-100): -78 F ==== Grade Converter ===== Enter a numerical grade (1-100): 64 F ==== Grade Converter ==== Enter a numerical grade (1-100): 65 D Download these files and load them into your IDE. grade converter.py. Copy this code \# FILE NAME - grade_converter.py \# NAME - \# DATE - \# DESCRIPTION def main (): grade_converter () def grade_converter () : print ('==== Grade Converter ====)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started