<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2 PTSIZE=10>Hello
<BR>
<BR>How would I get the following program to accept inputs of exam scores from 0-100 with A being 100-90, B being 89-80, C being 79-70, D being 69-60, and F being everything less than 60?
<BR>
<BR>import string
<BR>
<BR>def main():
<BR>
<BR>
<BR> &nbsp;&nbsp;&nbsp;scores = ["F", "D", "C", "B", "A"]
<BR> &nbsp;&nbsp;&nbsp;g = input("Enter a score number (0-100): ")
<BR>
<BR> &nbsp;&nbsp;&nbsp;print "The score of your exam is", scores [g-0] + "."
<BR>
<BR>
<BR>main() &nbsp;&nbsp;</FONT></HTML>