Python - Loop Control
You want to stop searching a list as soon as you find the number 7. Which code correctly uses
break to do this?numbers = [3, 5, 7, 9, 11]
for num in numbers:
# Your code here