c:\python
Python 3.7.6 (tags/v3.7.6:43364a7ae0, Dec 19 2019, 00:42:30) [MSC v.1916 64
bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> a=222
>>> a.to_bytes(1,'big')
b'\xde'
>>> a.to_bytes(1,'little')
b'\xde'
【 在 jlsthsdqyx (MR.Pussy) 的大作中提到: 】
: 确实,显示也不对。
: 终级问题:想把整数 222 转成 b'\xde' 呢?
--
FROM 58.23.244.*