How to XOR two strings in Python
Hi, The following function is returning the result of hex() which returns a string. You should use the ^ operator on integers. I’m not sure though that’s the result you’re looking for. If you want to XOR two strings, it means you want to XOR each character of one string with the character of the other string. You should then … Read more