mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 01:10:36 +02: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()]
|