PYTHON CODINGSep 10, 20251 min readdef outer(x): def inner(y): return x + y return innerf = outer(5)print(f(3))print(outer(10)(2))[Running] python3 -u "/Users/name/test/test261.py"812[Done] exited with code=0 in 0.085 seconds#Python #PythonCoding #VSCTry to run it.
Did you try to solve it?