For binary strings ( BINARY , VARBINARY , BLOB ), comparisons use the numeric values of the bytes in the operands; this means that for alphabetic characters, comparisons are case-sensitive .
Read moreAre string comparisons case-sensitive in python?
Python strings equality can be checked using == operator or __eq__() function. Python strings are case sensitive , so these equality check methods are also case sensitive.
Read more