When I am doing coding by the time I found this weird behavior in Python.
Why address or id is different for the string which consists special characters but not for the string which does not have special characters ?
'''
>>> a = 'hai'
>>>
>>> id('hai')
44289760L
>>> id(a)
44289760L
>>>
>>>
>>> del a
>>>
>>> a = 'hai@'
>>> id('hai@')
44289040L
>>>
>>> id(a)
44288840L
'''