Python 2.5将字符串转换为二进制

 

问题描述:

我知道这在python 2.6中很容易实现。但是在Python 2.5中最简单的方法是什么?

x = "This is my string"
b = to_bytes(x)  # I could do this easily in 2.7 using bin/ord 3+ could use b"my string"
print b

有什么建议?我想把x变成

00100010010101000100010000100001001011100110010000001101001011100110010000001101101011110010010000001110011011101000111001001101001011011100110011100100010


结合使用stomp.py(3.0.5)和python(2.6)和ApacheActiveMQ(5.5.1)。我已经有了基本示例,没有任何问题,但是现在我想将接收到的消息(在on_message()中)返回到 ...