2012年9月16日 星期日

[python] 字碼轉utf-8

原本在Python 2.x 是用下面這個再轉碼

unicode(text, 'utf-8')


Python 3.x 改為下面這個

str( text ,"utf-8")

沒有留言: