Python

medium
0/15 answered
Q1

What is the output of: def outer(): x = 10 def inner(): nonlocal x x = 20 inner() return x print(outer())

1 / 15