如何仅用“&”替换“&”

时间:2018-10-17 04:43:13

标签: python python-3.x ampersand

我正在尝试使用Python 3.6将json写入csv,并且json包含&

如何只写普通的&符号而不是&

我尝试了&的各种转义以及一些正则表达式,但都无济于事。那些str.replace不会让步的!

1 个答案:

答案 0 :(得分:0)

>>> s = 'text with & and more & other text'
>>> s.replace('&', '&')
'text with & and more & other text'