热门标签
更多>
搜索结果
查询Tags标签: x33,共有 2条记录-
Python2.7:字符转UFT-8、GBK、BIG5并得到bytes
Python2.7:字符转UFT-8、GBK、BIG5并得到bytes# encoding: utf-8def hexstr(s):return .join([hex(ord(c)).replace(0x,\\x) for c in s])# 转big5 def toBig5(s):s1 = s.decode(utf-8) lis = []for e in list(s1):try:lis.append(e.encode(big5))except:lis.append(&am…
2022/1/18 22:06:13 人评论 次浏览 -
Python2.7:字符转UFT-8、GBK、BIG5并得到bytes
Python2.7:字符转UFT-8、GBK、BIG5并得到bytes# encoding: utf-8def hexstr(s):return .join([hex(ord(c)).replace(0x,\\x) for c in s])# 转big5 def toBig5(s):s1 = s.decode(utf-8) lis = []for e in list(s1):try:lis.append(e.encode(big5))except:lis.append(&am…
2022/1/18 22:06:13 人评论 次浏览