I've been studying the Python textbook "Automate the boring stuff" and doing fine but this task has really stumped me. Been trying to do it for days, but can't get it right. Worst part is, I'm sure it's something kinda simple. What would you consider the best answer? Thank you.
Write an assert statement that triggers an AssertionError if the variables eggs and bacon contain strings that are the same as each other, even if their cases are different (that is, 'hello' and 'hello' are considered the same, and 'goodbye' and 'GOODbye' are also considered the same).