以下是用于将行从一个CSV复制到另一个CSV并添加列的Python代码:
import csv
def copy_csv_with_column(source_file, destination_file, column_name, column_value):
with open(source_file, 'r') as source_csv, open(destination_file, 'w', newline='') as dest_csv:
reader = csv.reader(source_csv)
writer = csv.writer(dest_csv)
# Read the header row from the source CSV
header = next(reader)
# Add the new column to the header
header.append(column_name)
# Write the modified header to the destination CSV
writer.writerow(header)
# Iterate over the rows in the source CSV
for row in reader:
# Add the column value to each row
row.append(column_value)
# Write the modified row to the destination CSV
writer.writerow(row)
# Example usage
copy_csv_with_column('source.csv', 'destination.csv', 'New Column', 'Value')
这段代码使用Python的csv模块实现了将行从一个CSV文件复制到另一个CSV文件并添加列的功能。具体步骤如下:
这段代码可以用于将一个CSV文件的数据复制到另一个CSV文件,并在目标文件中添加一个新的列。你可以根据实际需求修改源CSV文件的路径、目标CSV文件的路径、新列的名称和值。
腾讯云相关产品和产品介绍链接地址:
请注意,以上链接仅供参考,具体产品选择应根据实际需求和情况进行评估。
领取专属 10元无门槛券
手把手带您无忧上云