加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
remove_empty_row.py 358 Bytes
一键复制 编辑 原始数据 按行查看 历史
randerson112358 提交于 2018-09-03 00:22 . Create remove_empty_row.py
#This program reads in a .csv file called out.csv and removes all empty rows then creates a new file without the rows called FitBit.csv
import csv
input1 = open('out.csv', 'r')
output = open('FitBit.csv', 'w', newline='')
writer = csv.writer(output)
for row in csv.reader(input1):
if any(row):
writer.writerow(row)
input1.close()
output.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化