Mega Code Archive
Categories
/
Python Tutorial
/
Buildin Function
Filter a range
print range(-5, 5) print filter((lambda x: x > 0), range(-5, 5))