La méthode bin() convertit un nombre entier spécifié en sa représentation binaire et le renvoie.
Exemple
1 2 3 4 5 |
number = 7 # convert 7 to its binary equivalent print('The binary equivalent of 7 is:', bin(number)) # The output is: The binary equivalent of 7 is: 0b111 |
Younes Derfoufi
CRMEF OUJDA
1 thought on “La fonction bin() Python”