Python将csv格式转换为xlsx
from pandas import read_csv f=open('F://test.csv') data=read_csv(f) data.to_excel('test.xlsx')