How to print the bits of an integer in 32 bit format with Python

2 Answers

0 votes
num = 42
print('{:032b}'.format(num) + '\n')

num = 19
print('{:032b}'.format(num))





'''
run:

00000000000000000000000000101010

00000000000000000000000000010011
 
'''

 



answered Dec 13, 2023 by avibootz
0 votes
num = 42
print(bin(num)[2:].zfill(32) + '\n')

num = 19
print(bin(num)[2:].zfill(32))





'''
run:

00000000000000000000000000101010

00000000000000000000000000010011
 
'''

 



answered Dec 13, 2023 by avibootz

Related questions

1 answer 132 views
1 answer 129 views
1 answer 124 views
1 answer 110 views
1 answer 110 views
...