Tsv 表中有一些日期用井号表示
对于我正在构建的内部数据库,我有一个 sqlite 数据库,我想使用 python 将其导出到 tsv 文件中。当前的问题是我的一些日期被替换为“######”,双击时变成实际日期。有人可以帮忙吗?
注意:没有其他任何变化,包括类型(它们都是日期,如 excel 2007 所示)。
如果有人想查看 python 源代码,请评论,但我目前没有看到原因为什么我需要发布它。
For an internal database I'm building, I have a sqlite database, and I want to use python to export it into a tsv file. The current problem is that some of my dates are being replaced with '######', and when double-clicked, become actual dates. Could somebody please help?
Note: Nothing else changes, including type (they're both date, as excel 2007 indicates).
If anyone wants to see the python source code, please comment, but I don't currently see a reason as to why I need to post it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是
####
出现在 Excel 中?这是一个常见问题:当 Excel 无法显示单元格的整个值时,它会显示
###
直到可以显示整个值。这仅用于显示。STFW 以获得更多解释。
you mean the
####
appear in Excel?This is a common issue: when Excel cannot display the whole value of a cell, it displays
###
until it can show the whole value. This is display only.STFW for more explanation.