4.4.4: Administrators, Teachers, & Students
The Problem
The Problem
It doesn't seem to be working.
The Solution
The Solution
First check to make sure you're starting by checking if they are an administrator or a teacher. The assignment requires you to do an if/elif/else structure.
The if needs to check if the role matches "administrator" or "teacher."Check your spelling.
Did you use the assignment operator (=) instead of a comparison operator (==)?
In your if statement, you need to check to see if it's an administrator or a teacher. That must be written as follows:
if role == "administrator" or role == "teacher":
If you wrote it like this:
if role == "administrator" or "teacher":
It's incorrect and won't work. That's not a CodeHS thing, either - that's a Python thing. You have to write it out separately.