6 columnLabels_AL, columnLabels_CL = [
'']*71, [
'']*71
7 columnLabels_AS, columnLabels_CS = [
'']*71, [
'']*71
9 counterColumnLabels, counterRowLabels = 1, 1
11 for columnLabelIt
in range(0, 71):
12 if (columnLabelIt/3 - 1) % 3 == 0:
13 columnLabels_AL[columnLabelIt] =
'A' +
str(2*counterColumnLabels - 1).zfill(2)
14 columnLabels_CL[columnLabelIt] =
'C' +
str(2*counterColumnLabels - 1).zfill(2)
15 columnLabels_AS[columnLabelIt - 2] =
'A' +
str(2*counterColumnLabels).zfill(2)
16 columnLabels_CS[columnLabelIt - 2] =
'C' +
str(2*counterColumnLabels).zfill(2)
17 counterColumnLabels += 1
19 for rowLabelIt
in range(0, 56):
20 if (rowLabelIt/5 - 1) % 4 == 0:
21 rowLabels[rowLabelIt] =
'Q' +
str(counterRowLabels)
24 return columnLabels_AL, columnLabels_CL, columnLabels_AS, columnLabels_CS, rowLabels