使用 python 删除 csv 文件中的特定行
我想从以下 csv 文件中删除特定行:
"Title.XP PoseRank"
1VDV-constatomGlu-final-NoGluWat.
1VDV-constatomGlu-final-NoGluWat.
P6470-Usha.1
P6470-Usha.2
P6470-Usha.3
P6470-Usha.4
P6470-Usha.5
P6515-Usha.1
P6515-Usha.2
P6517.1
P6517.2
P6517.3
P6517.4
P6517.5
P6553-Usha.1
P6553-Usha.2
P6553-Usha.3
我想删除以 1VDV-constatomGlu-final-NoGluWat 开头的行。
i want ro remove specific lines from the following csv file :
"Title.XP PoseRank"
1VDV-constatomGlu-final-NoGluWat.
1VDV-constatomGlu-final-NoGluWat.
P6470-Usha.1
P6470-Usha.2
P6470-Usha.3
P6470-Usha.4
P6470-Usha.5
P6515-Usha.1
P6515-Usha.2
P6517.1
P6517.2
P6517.3
P6517.4
P6517.5
P6553-Usha.1
P6553-Usha.2
P6553-Usha.3
i want to remove the lines that begin with 1VDV-constatomGlu-final-NoGluWat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的解决方案是使用 csv 解析器(我没有测试此代码):
您也可以使用正则表达式或一些字符串操作,但存在转换后文件将不再是 csv 格式的风险
The right solution is to use csv parser(i didn't test this code):
You can use also regular expression or some string manipulations but there is the risk that after your transformations the file will be no longer in csv format