Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
a = '\a'
>>> b = '\7'
>>> a == b
True
>>> 

How can a and b are equal? Can someone give the reason?

share|improve this question
5  
ord('\a') == 7 – JBernardo Jun 9 '12 at 12:39
@JBernardo +1 ... – Denis Jun 9 '12 at 12:41
How did you discover this, without also immediately knowing why? It's a very strange thing to just try for no reason... – Karl Knechtel Jun 9 '12 at 13:30

4 Answers

up vote 5 down vote accepted

\a is escaped character sequence for control character BEL (a for alert). The character's ASCII code is also happened to be 7, which matches the octal value in the escape sequence \7.

References:

http://en.wikipedia.org/wiki/Bell_character

http://docs.python.org/reference/lexical_analysis.html#string-literals

share|improve this answer

They're equal because \a means the ASCII Bell character in Python. Looking at the ASCII table, the value of that character is 7.

share|improve this answer

It turns out \a and \7 have the same value:

>>> a = '\a'
>>> b = '\7'
>>> a
'\x07'
>>> b
'\x07'

\a is the ASCII Bell (BEL) character (source) which indeed has value 7 in the ASCII table (ASCII table).

share|improve this answer
ord('\a')
7

ord('\7')
7

hence the two are equal.

This ASCII table will show that \a (BEL) has octal character code 7

Similarly, but perhaps now not so surprising,

a = ('\t')
b = ('\11')  # octal character code for tab

a == b
True

if you consult the ASCII table.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.