python列表无法显示中文处理

#coding=utf-8
#!D:\gitworkspace\Python\pythonLearn
city = ['中国','湖北','武汉','027'];
lstring = '';
for item in city:
    if city[-1] == item:
       lstring += '%s' % item;
    else:
        lstring += '%s, ' % item;
print lstring;

for m in city:
    print m.decode('utf-8').encode('utf-8');
for i in city:
    print str(i)
raw_input("click'Enter'out");

python列表无法显示中文处理

你可能感兴趣的:(pythonlist列表)