Quick actions

cmd+k|ctrl+k

Navigation

Languages

Quiz

Snippet info

Language

Python

Visibility

public

Author

markusparu54

Created

2024-12-08T12:19:59.162102Z

Updated

2024-12-08T14:32:19.966445Z

nums = [5, 6, 7, 8]
result = list(filter(lambda x: x % 2 == 0, nums))
print(result)
INFO