✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде результатом виконання наступного коду?
def f(p):
def q():
return '*' * p
return q
r = f(1)
s = f(2)
print(r()+s())