如何将int转换为十六进制字符串?

时间:2010-02-16 00:07:54

标签: python string hex int

我想将一个整数(即< = 255)变为十六进制字符串表示

例如:我想传入65并退出'\x41'255并获取'\xff'

我尝试使用struct.pack('c', 65 )执行此操作,但是因为它想要接收单个字符串,因此会对9以上的任何内容产生窒息。

13 个答案:

答案 0 :(得分:195)

您正在寻找chr功能。

您似乎混合了整数的十进制表示和整数的十六进制表示,因此并不完全清楚您需要什么。根据您提供的描述,我认为其中一个片段显示了您想要的内容。

>>> chr(0x65) == '\x65'
True


>>> hex(65)
'0x41'
>>> chr(65) == '\x41'
True

请注意,这与包含整数为十六进制的字符串完全不同。如果这是您想要的,请使用hex内置。

答案 1 :(得分:127)

这会将整数转换为带有0x前缀的2位十六进制字符串:

strHex = "0x%0.2X" % 255

答案 2 :(得分:51)

hex()怎么办?

hex(255)  # 0xff

如果你真的希望\在前面,你可以这样做:

print '\\' + hex(255)[1:]

答案 3 :(得分:41)

尝试:

"0x%x" % 255 # => 0xff

"0x%X" % 255 # => 0xFF

Python文档说:“把它放在你的枕头下:http://docs.python.org/library/index.html

答案 4 :(得分:24)

让我添加这个,因为有时你只想要单个数字表示:

'{:x}'.format(15)
> f

现在可以使用新的f''格式字符串:

f'{15:x}'
> f
  

注意:最初的' f'在f'{15:x}'中表示格式字符串

答案 5 :(得分:10)

如果要打包一个值为< 255(一个字节无符号,uint8_t)的结构,并以一个字符串结尾,那么您可能正在寻找format B instead of c。 C将字符转换为字符串(本身不太有用),而B转换整数。

struct.pack('B', 65)

(是的,65是\ x41,而不是\ x65。)

struct类还可以方便地处理用于通信或其他用途的字节序。

答案 6 :(得分:6)

请注意,对于较大的值,hex()仍然有效(其他一些答案不是)

x = hex(349593196107334030177678842158399357)
print(x)

Python 2:0x4354467b746f6f5f736d616c6c3f7dL
Python 3:0x4354467b746f6f5f736d616c6c3f7d

对于解密的RSA消息,可以执行以下操作:

import binascii

hexadecimals = hex(349593196107334030177678842158399357)

print(binascii.unhexlify(hexadecimals[2:-1])) # python 2
print(binascii.unhexlify(hexadecimals[2:])) # python 3

答案 7 :(得分:5)

这对我来说效果最好

"0x%02X" % 5  # => 0x05
"0x%02X" % 17 # => 0x11

更改(2)如果你想要一个宽度更大的数字(2是2个十六进制打印的字符),那么3会给你以下

"0x%03X" % 5  # => 0x005
"0x%03X" % 17 # => 0x011

答案 8 :(得分:3)

我想要一个随机整数转换为六位十六进制字符串,开头是#。为此,我使用了

"#%6x" % random.randint(0xFFFFFF)

答案 9 :(得分:1)

根据format-examples,使用format(),我们可以做到:

>>> # format also supports binary numbers
>>> "int: {0:d};  hex: {0:x};  oct: {0:o};  bin: {0:b}".format(42)
'int: 42;  hex: 2a;  oct: 52;  bin: 101010'
>>> # with 0x, 0o, or 0b as prefix:
>>> "int: {0:d};  hex: {0:#x};  oct: {0:#o};  bin: {0:#b}".format(42)
'int: 42;  hex: 0x2a;  oct: 0o52;  bin: 0b101010'

答案 10 :(得分:0)

作为替代表示,您可以使用

[in] '%s' % hex(15)
[out]'0xf'

答案 11 :(得分:0)

(int_variable).to_bytes(bytes_length, byteorder='big'|'little').hex()

例如:

>>> (434).to_bytes(4, byteorder='big').hex()
'000001b2'
>>> (434).to_bytes(4, byteorder='little').hex()
'b2010000'

答案 12 :(得分:0)

您还可以将任何基数的任何数字转换为十六进制。在这里使用这一行代码很容易使用:

<!--javascript--> var myTimer = 0; var milliseconds = 4000; // for page on load $(window).on('load', function() { myTimer = setTimeout(function() { $(document).ready(function() { $(".chat-popup").show(); if (typeof(Storage) !== 'undefined') { $(document).ready(function() { $("button").click(function() { sessionStorage.setItem("myTimer", "true"); $('#myForm').hide('slow'); }) }); //console.log(sessionStorage.getItem('myTimer')); } }) }, milliseconds); //window.clearTimeout(myTimer); });

您有一个字符串 <!--css-->body { font-family: Arial, Helvetica, sans-serif; } * { box-sizing: border-box; } /* Button used to open the chat form - fixed at the bottom of the page */ .open-button { display: none; background-color: #555; color: white; padding: 16px 20px; border: none; cursor: pointer; opacity: 0.8; position: fixed; bottom: 23px; right: 28px; width: 280px; } /* The popup chat - hidden by default */ .chat-popup { display: none; position: fixed; bottom: 0; right: 15px; border: 3px solid #f1f1f1; z-index: 9; } /* Add styles to the form container */ .form-container { max-width: 300px; padding: 10px; background-color: white; } /* Full-width textarea */ .form-container textarea { width: 100%; padding: 15px; margin: 5px 0 22px 0; border: none; background: #f1f1f1; resize: none; min-height: 200px; } /* When the textarea gets focus, do something */ .form-container textarea:focus { background-color: #ddd; outline: none; } /* Set a style for the submit/send button */ .form-container .btn { background-color: orangered; color: white; padding: 16px 20px; border: none; cursor: pointer; width: 100%; margin-bottom: 10px; opacity: 0.8; } /* Add a red background color to the cancel button */ .form-container .cancel { background-color: purple; position: absolute; left: 260px; top: 0; width: 2rem; } /* Add some hover effects to buttons */ .form-container .btn:hover, .open-button:hover { opacity: 1; },它是您的数字, <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <!--html language--> <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="style.css"> </head> <body> <h2>Popup Chat box</h2> <p>On Page load pop-up chat will appear after 4000 milliseconds.</p> <button class="open-button">Chat</button> <div class="chat-popup" id="myForm"> <form action="/#" class="form-container"> <h1>Chat</h1> <label for="msg"><b>Message</b></label> <textarea placeholder="Type message.." name="msg" required></textarea> <button type="submit" class="btn">Send</button> <button type="button" class="btn cancel">&times;</button> </form> </div> <!--jquery cdn--> <script src="https://code.jquery.com/jquery-3.4.1.slim.js"></script> <!--chat js--> <script src="chat.js"></script> </body> </html>是该数字的基数。首先,将其更改为整数,然后更改为十六进制,但是十六进制的第一个字符为 <!--js--> `var myTimer = 0; var milliseconds = 4000; // for page on load $(window).on('load', function() { myTimer = setTimeout(function() { $(document).ready(function() { $(".chat-popup").show(); if (typeof(Storage) !== 'undefined') { $(document).ready(function() { $("button").click(function() { sessionStorage.setItem("myTimer", "true"); $('#myForm').hide('slow'); console.log('cancel clicked'); }) }); console.log(sessionStorage.getItem('myTimer')); } }) }, milliseconds); //window.clearTimeout(myTimer); }); ,因此使用 ` body { font-family: Arial, Helvetica, sans-serif; } * { box-sizing: border-box; } .open-button { display: none; background-color: #555; color: white; padding: 16px 20px; border: none; cursor: pointer; opacity: 0.8; position: fixed; bottom: 23px; right: 28px; width: 280px; } .chat-popup { display: none; position: fixed; bottom: 0; right: 15px; border: 3px solid #f1f1f1; z-index: 9; } .form-container { max-width: 300px; padding: 10px; background-color: white; } .form-container textarea { width: 100%; padding: 15px; margin: 5px 0 22px 0; border: none; background: #f1f1f1; resize: none; min-height: 200px; } .form-container textarea:focus { background-color: #ddd; outline: none; } .form-container .btn { background-color: orangered; color: white; padding: 16px 20px; border: none; cursor: pointer; width: 100%; margin-bottom: 10px; opacity: 0.8; } .form-container .cancel { background-color: purple; position: absolute; left: 260px; top: 0; width: 2rem; } .form-container .btn:hover, .open-button:hover { opacity: 1; } ` 时,我们将其删除。