У меня есть позиция в списке:
position = ["North", "Center", "South"]
Я хочу добавить значения, которые я читаю из файла xlsx, в цикле, поэтому я бы использовал North1 в качестве столбца B из одного файла Excel, Center1 издругой файл Excel и так далее.Это то, что я сделал до сих пор:
for p in position:
for i in sheets_heights:
sheetHeights = openpyxl.load_workbook(os.path.join(path,filename), data_only=True)
heights = sheetHeights.get_sheet_by_name("Sheet1")
North1=[]
North2=[]
North3=[] #here I wanted to create North1, Center1, South1 as a looping...
North4=[]
#here I wanted to get the variables created on the looping above and append the column values from excel
for row in range (2, heights.max_row+1):
Time.append(heights['A' + str(row)].value)
p.__add__North1.append(heights['B' + str(row)].value) #test
North2.append(heights['C' + str(row)].value)
North3.append(heights['D' + str(row)].value)
North4.append(heights['E' + str(row)].value)
Как сделать, чтобы последняя часть была внутри цикла?