Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
test_wf['Завершено'] = round(test_wf['construction_count_use'] / test_wf['construction_count'], 2)
test_wf['Завершено'] = round(test_wf['construction_count_use'] / test_wf['construction_count'], 2) test_wf['Завершено'].fillna(0, inplace=True) # Заменяет NaN на 0
const_count = test_wf['construction_count_use'] test_wf['Завершено'] = const_count and round(const_count / test_wf['construction_count'], 2) or 0 или test_wf['Завершено'] = round(const_count / test_wf['construction_count'], 2) if const_count else 0