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:
'x1ex00'
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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…