我有清单:
['data','oracle','typical']
我正在编写一个代码,将列表写入文件:
self.file.write(unicode(self.contentText))
但是在档案中,我看到了:
[u'data',u'oracle',u'typical']
如何解决这个问题?我不想看{4}}
答案 0 :(得分:1)
您正在使用Python 2,并将str
转换为unicode字符串。因此,u
将显示结果为Unicode。如果您不想在任何地方看到u
,请切换到Python 3。