比如名为a的数据表中的数据:
index A B C
0 135
1 2 4 6
2 7 8 9
删除第3列(索引为2的列):
a.drop(2)
插入的方法,用insert,或append:这个页面的前三分之一处有添加行数据的方法,注意添加的新数据的格式跟原表格的格式要匹配起来。
Python对csv文件进行行列的增加 *** 作方法,这里通过实例向大家讲解,代码如下:方法一:
import csv
d = list(range(38685))
with open('./hh.csv') as f1:
f_csv = csv.DictReader(f1)
for i, row in enumerate(f_csv):
#print(row)
key1 = hello'
value1 = 'test'
row[key1] = value1
key2 = 'hahaha'
value2 = '0'
row[key2] = value2
d[i] = row
f1.close()
方法二:
headers = ['hello', 'youtube_id', 'time_start', 'time_end', 'split', 'hahaha']
with open('./hh.csv', 'w') as f:
f_csv = csv.DictWriter(f, headers)
f_csv.writeheader()
f_csv.writerows(d)
f.close()
with open('./hh.csv','rt') as fin:
lines=''
for line in fin:
if line!='\n':
lines+=line
with open('./hh.csv','wt')as fout:
fout.write(lines)
在上面的所有中,我们分别使用了两种不同的方式来对csv文件进行行列的增加,第一种方法,首先先用一个excel表打开一个csv文件,对它进行手动添加了hello和hahaha。第二种方法,是直接利用python里面的csv模块进行改写 *** 作,在对csv文件进行 *** 作的时候,会增添许多的空行,在倒数第7行的代码开始,就是对csv文件中多出来的空格进行处理。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)