gpt4 book ai didi

python - 在 Python 中将二进制数相乘

转载 作者:太空宇宙 更新时间:2023-11-03 12:15:29 24 4
gpt4 key购买 nike

假设我有二进制数 0b110,即 6,我想将该数字乘以 3,得到 18,即 0b10010。我如何在 Python 中做到这一点,我尝试正常乘以它,但它没有用......

最佳答案

>>> 0b110 * 0b11
18
>>> bin(0b110 * 0b11)
'0b10010'

关于python - 在 Python 中将二进制数相乘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9382357/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com