1. 程式人生 > >python2.7 中構造帶u'的字串

python2.7 中構造帶u'的字串

python2.7 中由字串變數構造前面帶u的字串的方法:

ss='test'

sb=u''+str(ss)

sb就是我們想要的前面帶u的字串

Python 2有兩種字串型別:Unicode字串和非Unicode字串。Python 3只有一種型別:Unicode字串(Unicode strings)