hex()は渡した数字を16進数に変換してくれる関数。
print(hex(1)) '1' print(hex(10)) '0xa' print(hex(255)) 'oxff'
小数点の場合は、float.hex()を使う
print(float.hex(0.5)) '0x1.0000000000000p-1'
以上
hex()は渡した数字を16進数に変換してくれる関数。
print(hex(1)) '1' print(hex(10)) '0xa' print(hex(255)) 'oxff'
小数点の場合は、float.hex()を使う
print(float.hex(0.5)) '0x1.0000000000000p-1'
以上