is vs ==
print(True == 1)
print("" == 1)
print([] == 1)
print(10 == 10.0)
print([] == [])
#Is tends to be a little stricter : You're checking for the exact thing that you're looking for
#And == equality ckecks the value
INFO
print(True == 1)
print("" == 1)
print([] == 1)
print(10 == 10.0)
print([] == [])
#Is tends to be a little stricter : You're checking for the exact thing that you're looking for
#And == equality ckecks the value