mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 01:10:36 +02:00
5 lines
102 B
Python
5 lines
102 B
Python
# closing over a local variable in a list comprehension
|
|
def f():
|
|
a = 1
|
|
x = [a + b for b in l]
|