本文主要是介绍python处理html中的以#开头的编码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
乱码格式类似‘图灵程序设计丛书’
代码为:
text='图灵程序设计丛书'
text=text.replace('&#','')
text=[i for i in text.split(';') if i]
text=[hex(int(i)) for i in text]
text=[i.replace('0x','') for i in text]
string=' '
flag='\\u'
for i in text:string+=flag+format(i,'0>4s')
print(string.encode('utf-8').decode('unicode-escape'))
这篇关于python处理html中的以#开头的编码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!