标签: python python-3.x ascii
我有一个字符串"hello[ World]",我想将其转换为"hello[World]"
"hello[ World]"
"hello[World]"
我尝试过这样的事情:
a.encode("utf-8").decode("ascii")
我返回了与输入相同的字符串。
答案 0 :(得分:1)
尝试一下:
import html html.unescape("LASIX [FUROSEMIDE]")
这将产生:
'LASIX [FUROSEMIDE]'