def save_to_csv(""要存入的各个列名字""):
row = [""要存入的各个列名字""]
with open(r'path/filename.csv', 'a', newline='', encoding='utf-8') as file:
f = csv.writer(file)
f.writerow(row)
def save_to_csv(""要存入的各个列名字""):
row = [""要存入的各个列名字""]
with open(r'path/filename.csv', 'a', newline='', encoding='utf-8') as file:
f = csv.writer(file)
f.writerow(row)