「Pythonで16進数を扱う」の版間の差分
提供: Python入門
(ページの作成:「Pythonで16進数を扱う方法を紹介します。 '''読み方''' ;16進数:じゅうろくしんすう __TOC__ == 概要 == == 文字列を16進数に変換す...」) |
(相違点なし)
|
2014年1月23日 (木) 00:19時点における最新版
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を扱う