Python hex関数で10進数を16進数に変換するサンプル
環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)
構文
hex(10進数)
hex 関数を用いると、10進数表記の数値を16進数表記の文字列に変換できます。
使用例
# coding: utf-8 # 10進数の数値を16進数文字列に変換 x = hex(255) y = hex(512) z = hex(100) res = [x, y, z] print(res)
実行結果
['0xff’, '0x200’, '0x64’]