Write a Python program to print all even numbers from a given list of numbers in the same order and stop printing any after 237 in the sequence.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
numbers = [ 386, 462, 47, 418, 907, 344, 236, 375, 823, 566, 597, 978, 328, 615, 953, 345, 399, 162, 758, 219, 918, 237, 412, 566, 826, 248, 866, 950, 626, 949, 687, 217, 815, 67, 104, 58, 512, 24, 892, 894, 767, 553, 81, 379, 843, 831, 445, 742, 717, 958,743, 527 ] for x in numbers: if x == 237: print(x) break; elif x % 2 == 0: print(x) |