Pythonで16進数を扱う
提供: Python入門
スポンサーリンク
Pythonで16進数を扱う方法を紹介します。
読み方
- 16進数
- じゅうろくしんすう
概要
文字列を16進数に変換する
ソースコード
print hex(255) print int('0xff', 16) print int('ff', 16) print hex(65535) print int('0xffff', 16)
実行例
% python hex2.py 0xff 255 255 0xffff 65535
文字列を16進数に変換する
ソースコード
#!/usr/local/bin/python print 'hoge'.encode('hex') print '686f6765'.decode('hex')
実行例
% hex.py 686f6765 hoge
関連項目
- Pythonで2進数を扱う
- Pythonで8進数を扱う
- Pythonで10進数を扱う
- Pythonで16進数を扱う
- Pythonでbase64を扱う
- Pythonでuuencodeを扱う
- Pythonでrot13を扱う
- Pythonで任意のrotを扱う
ツイート
スポンサーリンク