a = '\a'
>>> b = '\7'
>>> a == b
True
>>>
How can a and b are equal? Can someone give the reason?
How can a and b are equal? Can someone give the reason? |
||||
|
References: http://en.wikipedia.org/wiki/Bell_character http://docs.python.org/reference/lexical_analysis.html#string-literals |
|||
|
|
|
They're equal because |
|||
|
|
|
It turns out
|
|||
|
|
hence the two are equal. This ASCII table will show that Similarly, but perhaps now not so surprising,
if you consult the ASCII table. |
||||
|
|
ord('\a') == 7– JBernardo Jun 9 '12 at 12:39