我需要更新库存清单,如何以这种方式写入CSV文件。你怎么写CSV文件?我试过搜索这个,但没有什么能解释为什么他们这样做了。
答案 0 :(得分:2)
https://docs.python.org/2/library/csv.html
import csv
with open('some.csv', 'wb') as f:
writer = csv.writer(f)
writer.writerows(someiterable)
代码说明
iterable可以是一个简单的列表,例如
my_iterable = ["Printed to line 1", "Printed to line 2"]
答案 1 :(得分:0)
正如你所说,你有一个股票“列表”,我宁愿用pandas写一个.csv。考虑到你有一个名为“stock_list”的股票列表
stock_list = [list of elements]
import pandas as pd
df = pd.DataFrame(stock_list, columns=["whatever name you want to give"])
df.to_csv("path to which you need to save", index=True/False (Depends on whether you need the index or not))