The expression ("Monday" or "Wednesday")in your code is always evaluated as "Monday". An operator oris a boolean orthat first tries if its first operand is evaluatedTrue . If so, it returns the first operand, otherwise it returns the second operand. Since it "Monday"is "trucy", your comparison is always compared to "Monday".
Use this instead:
if dayOfWeek in ("Monday", "Wednesday"):
print("Poetry: 6-7:15 in Chem 131")