Question: 
Write a python function to print positive numbers in a list.


Model's Code:
def pos_nos(lst):
    return tuple(x for x in lst if x > 0)



Sample Correct Code:
def pos_nos(list1):
  for num in list1: 
    if num >= 0: 
       return num 


Asserts:
assert pos_nos([-1,-2,1,2]) == 1,2
assert pos_nos([3,4,-5]) == 3,4
assert pos_nos([-2,-3,1]) == 1


Tests:
Test 1 of 3: FAIL: AssertionError(2)

Test 313 of 974: 224/313 (71.56549520766772%): failed