摘要:
#!/usr/local/bin/python3#coding=utf-8'''Created on 2011-2-25@author: http://www.cnblogs.com/txw1958/'''#http://www.weather.com.cn/data/sk/101010100.html 实时#http://www.weather.com.cn/data/cityinfo/101010100.html 全天#http://m.weather.com.cn/data/101010100.html 六天##http://www.goo 阅读全文
摘要:
原文:The bytes/str dichotomy in Python 3Python 3最重要的新特性大概要算是对文本和二进制数据作了更为清晰的区分。文本总是Unicode,由str类型表示,二进制数据则由bytes类型表示。Python 3不会以任意隐式的方式混用str和bytes,正是这使得两者的区分特别清晰。你不能拼接字符串和字节包,也无法在字节包里搜索字符串(反之亦然),也不能将字符串传入参数为字节包的函数(反之亦然)。这是件好事。不管怎样,字符串和字节包之间的界线是必然的,下面的图解非常重要,务请牢记于心:字符串可以编码成字节包,而字节包可以解码成字符串。>>> 阅读全文
摘要:
import base64copyright = 'Copyright (c) 2012 Doucube Inc. All rights reserved.'def main(): #转成bytes string bytesString = copyright.encode(encoding="utf-8") print(bytesString) #base64 编码 encodestr = base64.b64encode(bytesString) print(encodestr) print(encodestr.decode()) #解码 ... 阅读全文