4.4.4: Administrators, Teachers, & Students

The Problem

It doesn't seem to be working.

The Solution

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.