Tier 1 · Explain this code
Explain what evens does
Explain this code
Describe in plain English what this function returns.
1def evens(nums):2 return [n for n in nums if n % 2 == 0]
All activitiesDescribe in plain English what this function returns.
1def evens(nums):2 return [n for n in nums if n % 2 == 0]