把 255 转换为十六进制值:
x = hex(255)print(x)
x = hex(255)
print(x)
hex() 函数将指定的数字转换为十六进制值。
hex()
返回的字符串始终以前缀 0x 开头。
hex(number)