编程软件 python 字符串对象与编码 python中有两种字符串对象,即str和unicode。 一个简单的演示: s1 = 'abcdefg' u1 = u'abcdefg' print s1 print u1 type(s1) typ... 03月08日评论python string 阅读全文