• home
  • about
  • 全ての投稿
  • ソフトウェア・ハードウェアの設定のまとめ
  • 分析関連のまとめ
  • ヘルスケア関連のまとめ
  • 生涯学習関連のまとめ

python bin

date: 2022-11-30 excerpt: pythonの2進数表記

tag: pythonformatbin


pythonの2進数表記

bin関数

assert bin(16) == '0b10000'

format関数

assert format(16, 'b') == '10000'

参考

  • Built-in Functions/docs.python.org


pythonformatbin Share Tweet