“Format binärer String -Python” Code-Antworten

Format binärer String -Python


x = 10
print(format(x, '#b')) # 0b1010
print(format(x, 'b')) # 1010
x= 0xF
print(format(x, 'b')) # 1111
print(f'{x:b}') # 1111 (If you knew this format, you are Python Ninja!)
Frantic Fish

Format binärer String -Python

>>> format(14, '#010b')
'0b00001110'
Frantic Fish

Ähnliche Antworten wie “Format binärer String -Python”

Fragen ähnlich wie “Format binärer String -Python”

Weitere verwandte Antworten zu “Format binärer String -Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen