pocketpy/tests/99_bugs.py
2023-03-16 16:07:17 +08:00

4 lines
133 B
Python

# https://github.com/blueloveTH/pocketpy/issues/37
mp = map(lambda x: x**2, [1, 2, 3, 4, 5] )
assert list(mp) == [1, 4, 9, 16, 25]