Please clarify my doubt about python identity operators is and is not.
a,b = 10.0, 10.0
print (a is b)
will result in True
where as
a = 10.0
b = 10.0
print (a is b)
will result in False
Why in the first case the id() function results is same value and different in the second case