Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一些通常显示为十六进制的二进制操作。我已经看到了0x和\x作为前缀。
0x
\x
在什么情况下使用哪个?
0x用于文字数字。"\x"在字符串内部使用来表示一个字符
"\x"
>>> 0x41 65 >>> "\x41" 'A' >>> "\x01" # a non printable character '\x01'
0x 跟在数字后面,表示 HEX 数字
\x 跟在数字后面,表示 HEX ascii 字符
在这里检查: ascii 表