from typing import Callable
def apply_twice(f: Callable[[int], int], x: int) -> int:
return f(f(x))
print(apply_twice(lambda x: x + 1, 3))
Post #2925
638
Что выведет код?