Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
mariorz
on June 24, 2008
|
parent
|
context
|
favorite
| on:
Guido on the fate of Lambda, map() and filter(), a...
I still think the list comprehension is clearer than:
map(str, filter(lambda x: x%2 is 0, range(100)))
Consider applying for YC's Fall 2025 batch! Applications are open till Aug 4
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
map(str, filter(lambda x: x%2 is 0, range(100)))