You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ChocoPy/pa3-tests/core/stmt_for_list_return.py

9 lines
148 B

def print_list(z:[int]) -> object:
x:int = 0
for x in z:
print(x)
if x >= 30:
return
print_list([10,20,30,40])