1 に答える
1
I'm not a Windows guy, so I am not sure whether the problem may be with your code or with excel just not handling non-ascii characters nicely. But I have noticed that you are writing your file with python csv
module, which is notorious for headaches with unicode.
Other users have reported success with using unicodecsv
as a replacement for the csv module. Perhaps you could try dropping in this module as a csv writer and see if your problem magically goes away.
于 2013-02-27T06:47:21.043 に答える