mirror of
https://github.com/micropython/micropython.git
synced 2026-01-13 23:47:14 +01:00
4 lines
65 B
Python
4 lines
65 B
Python
x = (a + 1 for a in l if a.f())
|
|
|
|
x = [a + 1 for a in l if a.f()]
|