sachin
answered Aug 6 '21 00:00
there is no === operator in python, in another hand for checking the type and value of the variable you can use "is" or == operator
below code is work without error :
a =1223
b="1223"
print(a==b)
it will print False because type and value of a and b is not equal
a =1223
b="1223"
print(a is b)
it will print False because type and value of a and b is not equal