So I am trying to compare two string variables with ==
and it is not working for some reason. For example this code
print(dictionary[0])
print("A")
print(dictionary[0] == "A")
prints out
A
A
False
I don't understand why it returns False
when they are clearly equal.
Either your list contains a string with whitespaces at the end or the item number 0 is not a string, but an object, that is printed as an "A".