Identifier operations explain how can we get the output

x=10.5
y=10.5
Print(x==y)
print(x is y)
print(id(x))
print(id(x))

2 Likes

@syamprasaderraballi

Well done, keep it up.

1 Like