I get some string from web use python3.4. Here is string I get:
str="<lily>"
How to get this result?
str="<lily>"
I get some string from web use python3.4. Here is string I get:
str="<lily>"
How to get this result?
str="<lily>"
use replace:
str="<lily>"
str.replace("<","<").replace(">",">")