sheet tag

31 questions


1 answers
112 views
0
How to put values in cells in multiple sheets in Python Excel?

import openpyxlwb = openpyxl.Workbook('part1.xlsx')for i in range(0,10): sheets = wb.create_sheet('sheet%d'%(i),i)s = []for i in range(0,10): s.append('sheet%d'%(i))list = [X, Alpha, Beta, Gamma, B/A,...

« - 4 -

© 2024 OneMinuteCode. All rights reserved.