0

我想从 AppEngine (Python) 返回 4 个字节的数据。

在某些情况下我想返回 a),在某些情况下 b)

一)393217 = 0x60001

b) 393218 = 0x60002

问题是,如果我像这样将 base10 数字写到输出流中:

class MyClass(webapp.RequestHandler):
    def get(self, option):
        self.response.out.write(393217)

它返回 6 个字节的数据,如果 393217 被解释为字符串,则这是正确的。但我只想返回 4 个字节 0x00060001

有任何想法吗?

谢谢

4

1 回答 1

0

好的,看来如果我这样做:

"00600001".decode("hex")

我得到了我想要的 4 个字节。

于 2012-11-02T11:18:04.010 回答