79594251

Date: 2025-04-26 18:09:14
Score: 1
Natty:
Report link

You cannot compare 'a', which is of type str, with 97, which is of type int.

To do that, you need to convert 97, which is an integer, into a character using the chr() function.

>>> print('a' == chr(97))
True
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: clecle31