Vim 中有两个与编码有关的变量,如果理解了基本就不会再为编码问题头疼了。 encoding :Vim 内部编 […]
Continue reading…
Posts tagged with 'unicode'
Python3 str混入bytes的解码问题
问题:”abc\\xe2\\x86\\x92″是一个str,其中混入了一些被错误转义的字符,需要解码得到”ab […]
Continue reading…
Vim补全代码块神器Ultisnips
爬虫项目中的testcase有很多重复的代码,一般情况都是:mock掉发向服务器的请求 -> 初始化数据 […]
Continue reading…
Python的字符串编码
Python2的编码 在Python2中,str和unicode都是basestring的子类。 str是un […]
Continue reading…
Python对Json的解析
什么是Json Json是一种常用的数据交换结构,由于轻量、易于阅读和编写等特点,在网络方面应用很广。 它的格 […]
Continue reading…