Files
MYSOPHAL/api.dsi.sophal.dz/hr_tickets/Python-3.9.6/Lib/test/badsyntax_future9.py
2025-08-07 13:15:31 +01:00

11 lines
142 B
Python

"""This is a test"""
from __future__ import nested_scopes, braces
def f(x):
def g(y):
return x + y
return g
print(f(2)(4))