标签: python
我目前有一个位字符串,表示为:
"1011"
我想将索引0处的“ 1”翻转为“ 0”,这将给我:
"0011"
我尝试过:
my_bit = "1011" my_bit[0] = "0"
但是我收到一条错误消息,提示TypeError:'str'对象不支持项目分配。