Python Comparison Operators
Python Comparison Operators compare two values and gives a single Boolean value as a result. For example, suppose we wish to check whether two variables a and b are equal. We will use the equal operator represented by ‘==’. a=10 b=20 a==b will gives False since 10 is not equal to 20 Similarly, if a=10… Read More »