字符串加u的特殊需求

#coding:utf-8

L = ['a','b','c']
S = []
for i in L:
    tmp = str(i).decode('utf-8')
    S.append(tmp)

print S

  

原文地址:https://www.cnblogs.com/xiaobaichuangtianxia/p/4809556.html