equals python code example
Example 1: string equals python
str1 == str2
# return True if the strings are equals. Case sensitive !
str1 = "python"
str2 = "python"
str1 == str2 # True
str1 = "python"
str2 = "javascript"
str1 == str2 # False
str1 = "python"
str2 = "PYTHON"
str1 == str2 # False
Example 2: not equal to in python
>>> 'ABC' != 'ABC'
False
>>> 1 != 1
False
>>> {1: None, 2: None} != 10
True
>>> 1 != 1.0
False