mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-21 12:00:18 +00:00
15 lines
151 B
Python
15 lines
151 B
Python
def g(x):
|
|
return x
|
|
def f(x):
|
|
return x
|
|
|
|
assert (g(1), 2) == (1, 2)
|
|
assert (
|
|
g(1),
|
|
2
|
|
) == (1, 2)
|
|
|
|
assert f((
|
|
g(1),
|
|
2
|
|
)) == (1, 2) |