- 1
HELP!!!!!!!
What is the highest number this function prints if called? def print_numbers(): print(1) print(2) return print(4) print(6)
2 Answers
+ 6
def print_numbers():
print(1)
print(2)
return
print(4)
print(6)
print_numbers()
Run it in the playground add see the output.
+ 4
2, because the execution exits the function when it reaches return statement



