#coding:utf-8

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

print S

  

posted on 2015-09-15 10:43  小白闯天下  阅读(159)  评论(0编辑  收藏  举报