Source Code:
(back to article)
string1 = "Hello" string2 = "Hello" string3 = "hello" print(string1 == string2) # True print(string1 == string3) # False
Result:
Report an issue