In [[Python]], you can compare two strings in a case-insensitive way by using: ```python if name.lower() == row[0].lower(): doStuff() ``` This condition will be true for `Apple` and `apple`.