Я использовал format
в Python много раз, но у меня возникли проблемы.
Решение должно быть простым, но я не понимаю ...
Вот код:
test_list = df.groupby(['gender', 'admitted'])['student_id'].count()
print('The quantity of female students are {}.'.format(test_list[0] + test_list[1])
Выход test_list
:
gender admitted
female False 183
True 74
male False 125
True 118
Name: student_id, dtype: int64
Итак, test_list[0]
равно 183, а test_list[1]
равно 74.
Результат, ожидаемый от печати:
The quantity of female students are 257.