「Python入門」10進数の値を2進数に変換するサンプル

2020年11月13日

構文
bin(x)
整数を先頭に “0b" が付いた 2 進文字列に変換します。
サンプルコード

# coding: utf-8

cftA = bin(-10)

print(cftA)

cftB = bin(2)

print(cftB)

cftC = bin(3)

print(cftC)

結果
-0b1010
0b10
0b11

Python

Posted by arkgame