标签: python-3.4 decode
我从web使用python3.4得到一些字符串。 这是我得到的字符串:
str="<lily>"
如何获得此结果?
str="<lily>"
答案 0 :(得分:1)
使用替换:
str="<lily>" str.replace("<","<").replace(">",">")