如何检查有效的 csv 文件?
我有一个这种格式的 csv 文件
"emails"
"[email protected]"
"[email protected]"
"[email protected]"
如果文件不是上述格式,我想抛出文件格式错误。如何做到这一点?
I have a csv file in this format
"emails"
"[email protected]"
"[email protected]"
"[email protected]"
If a file is not in the above format, I want to throw a file format error. How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 csv 模块读取文件 - 检查第一行是否与您期望的标题匹配,然后使用正则表达式(re 模块)检查后续行中的电子邮件地址...如果出现这些情况,则抛出适当的异常或终止程序措施失败。
Just use the csv module to read the file -- check the first row matches the header you expect, and use a regex (re module) to check the email addresses in subsequent lines... Throw the appropriate exception or terminate the program if these measures fail.
只需尝试 cutplace 它会验证您的 csv 是否符合指定的格式。
Just try cutplace it validates if your csv conforms to a specified format.