mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10: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()]
|