0
我正在使用csv模塊讀取csv文件以進行數據分析。在Python 3中用0替換空單元格
data = []
c1 = []
c2 = []
c3 = []
data_file = csv.reader(open('file.csv'))
for row in data_file:
data.append(row)
for i in data:
c1.append(data[i][0])
c2.append(data[i][1])
c3.append(data[i][2])
如何用0替換空單元格?
請格式化您的代碼 –
什麼是問題? –
請提出問題。 –