Python以字符串而不是值的形式打印ASCII字符

时间:2019-05-28 21:49:03

标签: python python-3.x ascii

我有一个字符串"hello[ World]",我想将其转换为"hello[World]"

我尝试过这样的事情:

 a.encode("utf-8").decode("ascii")

我返回了与输入相同的字符串。

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试一下:

import html
html.unescape("LASIX [FUROSEMIDE]")

这将产生:

'LASIX [FUROSEMIDE]'