equals method in 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: what is not equals in python
10 = 10 #It does equal.
10 != 3 #It does NOT equal.