标签: python python-3.x binary
我需要在python中将负数转换为二进制数。 我该怎么办?
编辑:我需要使用二元补充
答案 0 :(得分:0)
bin(-2) #'-0b10'
使用内置的bin函数获取二进制表示。
bin