如果我有一个字符串,例如string = "这个文本是&这个文本也是未知的&程序未知的"如何删除 & 字符中的所有内容?
3 回答
料青山看我应如是
TA贡献1772条经验 获得超8个赞
使用find的简单方法:
s = "This text is &This text is also unknown &unknown to the program"
start = s.find('&')
end = s.find('&', start+1)
result = s[:start] + s[end+1:]
print(result)
输出
This text is unknown to the program
添加回答
举报
0/150
提交
取消