Pandas 将List 转为 Dataframe

思路

使用 xlwings 对 excel 进行操作。

  1. 将 list 转为 dict
  2. 将 dict 转为 Dataframe
  3. 写入到 excel 里。
代码
import xlwings as xw
import pandas as pd
name = ['王家卫','周星驰','徐克']
id = ['001','002','003']
wb = xw.Book('upload.xlsx')
c={"name": name,"id": id}
df = pd.DataFrame(c,columns=['name', 'id'])  #指定列名为name和id,顺序name先,id后
xw.Range('A1').value = df
结果
Pandas 将List 转为 Dataframe_第1张图片

你可能感兴趣的:(Pandas 将List 转为 Dataframe)