satwikkansal / wtfpython

What the f*ck Python? 😱
Do What The F*ck You Want To Public License
35.51k stars 2.65k forks source link

Python Interning operation result #310

Closed abhigyan631 closed 1 year ago

abhigyan631 commented 1 year ago

a = "wtf" b = "wtf" a is b

This gives 'True' as the answer

a = "wtf!" b = "wtf!" a is b

This gives 'False' as the answer

Can anyone please explain this? I ran the code on Jupyter. Thank you.