log = []
def log_append(x):
log.append(x)
def runner(func):
func(1)
func(2)
return log
print(runner(log_append))
Post #2935
596
Что выведет код?