Language: python3 Source: help(sum) Result: Help on built-in function sum in module builtins: sum(iterable, start=0, /) Return the sum of a 'start' value (default: 0) plus an iterable of numbers When the iterable is empty, return the start value. This function is intended specifically for use with numeric values and may reject non-numeric types.
а цикл может тормозить при количестве итераций 10? ответ: зависит.
Конечно может. def f(): for _ in range(11): time.sleep(0.5) yield 1 sum(f())
Обсуждают сегодня