@ -1,4 +1,4 @@
def positive(numbers):
return([positive for positive in numbers if positive > 0])
return([positive if positive > 0 else 0 for positive in numbers])
print(positive([-5, 3, -1, 101]))
The note is not visible to the blocked user.