如何摆脱0x?

How to get rid off of the 0x?

我有下一个字符串 0x00x41 是一个十六进制代码,但我想去掉 0x。你能告诉别人怎么做吗?

我想你可以这样做:

x = 0x00x41
y = x.replace("0x", "")
print (y)

输出应该是:

041

您可以执行以下操作,请注意 1 作为 replace 的参数使得它只替换字符串的第一次出现:

s = '0x00x41'
new_s = s.replace("0x", "", 1)

print(new_s)

给出以下结果:

00x41