Python会改变我的字节串吗?

时间:2012-10-30 00:16:37

标签: python c string bytearray

Python会改变我的字符串吗?

enter image description here

相关问题是I was using a little shellcode in my python but failed

PS:我怀疑Python String或C string的最终字符是什么,如果字符串有最终字符,那该怎么处理呢?这与这个问题有关吗?

1 个答案:

答案 0 :(得分:6)

>>> chr(int('49', 16))
'I'

实际上,\x49 I


关于此的解释:

\x49表示“代码49为十六进制的字符。十六进制中的49为int('49', 16)7373I的ASCII字符代码,您可以通过以下方式验证:ord('I')73