“Obtenez une chaîne binaire Python” Réponses codées

Format Binary 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

Obtenez une chaîne binaire Python

>>> "{0:b}".format(37)
'100101'
Better Barracuda

Format Binary String Python

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

Réponses similaires à “Obtenez une chaîne binaire Python”

Questions similaires à “Obtenez une chaîne binaire Python”

Plus de réponses similaires à “Obtenez une chaîne binaire Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code