gpt4 book ai didi

python - “str”对象不支持项目分配 (Python)

转载 作者:太空狗 更新时间:2023-10-30 01:06:16 24 4
gpt4 key购买 nike

def remove_char(text):
for letter in text[1]:
text[0] = text[0].replace(letter," ")
return text[0]

这是返回:

'str' object does not support item assignment

为什么?我怎样才能做到这一点?

最佳答案

在 Python 中,字符串是不可变的,这意味着它们不能被更改。但是,您可以将整个变量替换为新版本的字符串。

例子:

text = ' ' + text[1:] # replaces first character with space

关于python - “str”对象不支持项目分配 (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38601139/

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