Skip to content
Snippets Groups Projects
Commit e9ee98e3 authored by Dr. Hamed Khalili's avatar Dr. Hamed Khalili
Browse files

Upload New File

parent 620300a8
No related branches found
No related tags found
No related merge requests found
writer = pd.ExcelWriter('trace_multiple.xlsx', engine='xlsxwriter')
#liss_plus
a=azscore
for i in range (0,len(a)):
import pandas
data=a[i][4]
columns=a[i][3]
index=a[i][2]
pandas.set_option('display.max_rows', 500)
df=pandas.DataFrame(data, index, columns)
df['index1'] = df.index
df.to_excel(writer, sheet_name=str(a[i][2][1][3:])+a[i][1][0][:10]+str(len(a[i][1])), index=False)
writer.close()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment