There is one deliverable for this assignment
if
statement should not print anything, but
should set a variable that is used in a final print statement
at the end of the program.
$ python3 hw4.py What is your score? 100 The grade for a score of 100 is A $ python3 hw4.py What is your score? 92 The grade for a score of 92 is A- $ python3 hw4.py What is your score? 89 The grade for a score of 89 is B+ $ python3 hw4.py What is your score? 85 The grade for a score of 85 is B $ python3 hw4.py What is your score? 82 The grade for a score of 82 is B- $ python3 hw4.py What is your score? 79 The grade for a score of 79 is C+ $ python3 hw4.py What is your score? 75 The grade for a score of 75 is C $ python3 hw4.py What is your score? 72 The grade for a score of 72 is C- $ python3 hw4.py What is your score? 69 The grade for a score of 69 is D+ $ python3 hw4.py What is your score? 65 The grade for a score of 65 is D $ python3 hw4.py What is your score? 62 The grade for a score of 62 is D- $ python3 hw4.py What is your score? 59 The grade for a score of 59 is FThe text colored blue is user input.