I'm trying to adapt an exercise that will spit out a student's grade, so that instead of putting the name in the code eg
print get_letter_grade (get_average(alice))
I want to use user input.
I personally tend to automatically type names with a capital (ie Alice), so I needed to santise my inputs, using .lower()
The code works without .lower
as long as I don't use uppercase.
The errors seem to be for all lowercase input AttributeError: 'dict' object has no attribute 'lower'
And for upper case (ie Alice) input: NameError: name 'Tyler' is not defined:
pupil = input("Which student?").lower()
print get_letter_grade (get_average(
pupil))
Tried:
pupil = input("Which student?").lower
student = pupil
print get_letter_grade (get_average(
student))
Also tried:
pupil = input("Which student?")
student = pupil.lower()
print get_letter_grade (get_average(
student))
And:
pupil = input("Which student?")
student = pupil
print get_letter_grade (get_average(input("Which student?").lower()))
Here's the full code:
lloyd = {
"name": "Lloyd",
"homework": [90.0, 97.0, 75.0, 92.0],
"quizzes": [88.0, 40.0, 94.0],
"tests": [75.0, 90.0]
}
alice = {
"name": "Alice",
"homework": [100.0, 92.0, 98.0, 100.0],
"quizzes": [82.0, 83.0, 91.0],
"tests": [89.0, 97.0]
}
tyler = {
"name": "Tyler",
"homework": [0.0, 87.0, 75.0, 22.0],
"quizzes": [0.0, 75.0, 78.0],
"tests": [100.0, 100.0]
}
def average(numbers):
total=sum(numbers)
total=float(total)
total =total/len(numbers)
return total
def get_average(student):
homework = average(student["homework"])
quizzes = average(student["quizzes"])
tests = average(student["tests"])
return float(0.1*homework + 0.3*quizzes + 0.6*tests)
def get_letter_grade(score):
if score>=90:
return "A"
elif score>=80:
return "B"
elif score>=70:
return "C"
elif score>=60:
return "D"
else:
return "F"
pupil = input("Which student?").lower()
print get_letter_grade (get_average(
pupil))
I feel like I'm misunderstanding things about how user input is used/processed, or something to do with formatting strings, dictionaries?