需要在用户计算机上创建CSV文件,并且必须自动检测列表分隔符(以便excel可以读取CSV文件).
我发现Excel从“区域选项 – >数字 – >列表分隔符”中获取CSV元素分隔符. Python中的locale模块用于检测文化设置,但它(locale.localeconv)不包含列表分隔符.用dialect =’excel’打开CSV编写器没有帮助.知道如何获得正确的分隔符吗?
编辑
以下代码似乎有效(但不能接受任何upvotes,因为解决方案不是我的)
import locale
langlocale = locale.getdefaultlocale()[0]
locale.setlocale(locale.LC_ALL,langlocale)
dp = locale.localeconv()['decimal_point']
delimiter = ','
if dp == ',':
delimiter = ';'
最佳答案
用xlwt写一个XLS文件.
原文链接:https://www.f2er.com/python/439201.html拿2:使用语言环境模块和一些启发式:
>>> import locale
>>> locale.setlocale(locale.LC_ALL,'') # set to user's locale,not "C"
'English_Australia.1252'
>>> dec_pt_chr = locale.localeconv()['decimal_point']
>>> if dec_pt_chr == ",":
... list_delimiter = ";"
... else:
... list_delimiter = ","
...
>>> print repr(dec_pt_chr),repr(list_delimiter)
'.' ','
>>> locale.setlocale(locale.LC_ALL,'French_France.1252')
'French_France.1252'
>>> dec_pt_chr = locale.localeconv()['decimal_point']
>>> if dec_pt_chr == ",repr(list_delimiter)
',' ';'
>>>