Hey
I’m trying to print the names and etc.
but I’m getting the error TypeError: list indices must be integers, not str
How do I fix this?
Hey
I’m trying to print the names and etc.
but I’m getting the error TypeError: list indices must be integers, not str
How do I fix this?
Inside the for-loop
You have
print students["name"]
but that should be
print student["name"]
students should be student