I assign a value to a variable x in the following way:

import wave
w = wave.open('/usr/share/sounds/ekiga/voicemail.wav', 'r')
x = w.readframes(1)

When I type x I get:

'\x1e\x00'

So x got a value. But what is that? Is it hexadecimal? type(x) and type(x[0]) tell me that x and x[0] a strings. Can anybody tell me how should I interpret this strings? Can I transform them into integer?

link|improve this question

64% accept rate
feedback

3 Answers

The interactive interpreter echoes unprintable characters like that. The string contains two bytes, 0x1E and 0x00. You can convert it to an (WORD-size) integer with struct.unpack("<H", x) (little endian!).

link|improve this answer
How would you convert an array of integers back to string in the same format after this? – quano May 7 '11 at 10:09
@quano: Arrays have the .tostring() method. For simple sequences, you can use struct.pack("<4H", 1, 2, 3, 4). numpy should also have similar methods. – AndiDog May 7 '11 at 10:42
feedback

This strings represent bytes. I guess you can turn them into an integer with struct package, which allows interpreting strings of bytes.

link|improve this answer
feedback

It's a two byte string:

>>> x='\x1e\x00'
>>> map(ord, list(x))
[30, 0]
>>> [ord(i) for i in x]
[30, 0]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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