вот пример: р>
Код: Выделить всё
total = 0
grades = {
'Math': 90,
'Science': None,
'English': 85,
'History': 'A',
'Art': 88
}
for grade in grades.values():
total += grade
Подробнее здесь: https://stackoverflow.com/questions/790 ... rtain-type
Код: Выделить всё
total = 0
grades = {
'Math': 90,
'Science': None,
'English': 85,
'History': 'A',
'Art': 88
}
for grade in grades.values():
total += grade