Код: Выделить всё
result = {"AAA": "a", "BBB": "b", "Count": 0}
result["Count"] += 1
Код: Выделить всё
Unsupported operand types for + ("object" and "int")
Подробнее здесь: https://stackoverflow.com/questions/792 ... nd-types-f
Код: Выделить всё
result = {"AAA": "a", "BBB": "b", "Count": 0}
result["Count"] += 1
Код: Выделить всё
Unsupported operand types for + ("object" and "int")