Как добавить в строковую переменную в цикле? - PullRequest
0 голосов
/ 26 апреля 2018

У меня есть позиция в списке:

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)

Как сделать, чтобы последняя часть была внутри цикла?

1 Ответ

0 голосов
/ 26 апреля 2018

Сделайте отступ во втором цикле еще на 4 пробела, и он будет помещен в цикл "for i in sheet_heights".

Редактировать: Полученный код:

North1=[]
North2=[]
North3=[] #here I wanted to create North1, Center1, South1 as a looping...
North4=[]

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")

        #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)
            North1.append(heights['B' + str(row)].value)
            North2.append(heights['C' + str(row)].value)
            North3.append(heights['D' + str(row)].value)
            North4.append(heights['E' + str(row)].value)
...