I want to convert int type of python to signed integer with specified width.
But, converting -3
using bin()
returning -0b11
instead of 1101
in 4-bit
system.
0
I want to convert int type of python to signed integer with specified width.
But, converting -3
using bin()
returning -0b11
instead of 1101
in 4-bit
system.
0