b
some.__class__._config[...]
Size: a a a
b
БГ
БГ
__setattr__
ДА
def table_save():
file = str(time1_local) + ".xlsx"
wb = openpyxl.load_workbook(file)
ws = wb.active
array = [[str(name_bd), str(round(bonus_all,2))]]
for subarray in array:
ws.append(subarray)
wb.save(file)
pass
Всё круто работает только:def table_save():
file = str(time1_local) + ".xlsx"
wb = openpyxl.load_workbook(file)
ws = wb.active
array = [[str(name_bd), float(round(bonus_all,0)]]
for subarray in array:
ws.append(subarray)
for row in ws.iter_rows(1):
for cell in row:
c = ws.cell(row=cell.row, column=2)
c.number_format = '#,## ₽'
wb.save(file)
pass
b
БГ
БГ
K
БГ
РП
K
Sx
БГ
b
K
AT
Sx