Re: [Tutor] creating strings

2005-09-25 Thread Andrei
[EMAIL PROTECTED] wrote: > 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? > > import string There's no point in importing string. > def main(): > > sc

Re: [Tutor] creating strings

2005-09-25 Thread Pujo Aji
I will use simple function:   def getscore(val):    if 90 < val <=100:    return 'A'    elif val >= 80:    return 'B'    elif val >= 70:    return 'C'    elif val >= 60:    return 'D'     else:    return 'F'    def main():    g = input('Enter score:')    print 'the score of the

[Tutor] creating strings

2005-09-24 Thread Goofball223
Hello 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? import string def main():   scores = ["F", "D", "C", "B", "A"]   g = input("Enter a score number (0-10