In javascript, there are strict comparison operators op1 === op2 and op1 !== op2 that will compare both type and value. Is there a pythonic way of
op1 === op2
op1 !== op2
Python's equal comparator is for the most part always strict.
For example:
Python
0 == '0' # False 0 == '' # False
Javascript
0 == '0' //True 0 === '0' //False 0 == '' //True 0 === '0' //False