Go To The Editor: 28. Write A Python Program To Print All Even Numbers From A
A Python program prints all even numbers from a list of numbers in the original order and stops printing after it reaches the number 237 in the sequence. The list contains 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,
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
46 views
Go To The Editor: 28. Write A Python Program To Print All Even Numbers From A
A Python program prints all even numbers from a list of numbers in the original order and stops printing after it reaches the number 237 in the sequence. The list contains 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,
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
28.
Write a Python program to print all even numbers from a
given numbers list in the same order and stop the printing if any numbers that come after 237 in the sequence. Go to the editor Sample numbers list : 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 ]
Click me to see the sample solution
29. Write a Python program to print out a set containing all the
colors from color_list_1 which are not present in color_list_2. Go to the editor Test Data : color_list_1 = set(["White", "Black", "Red"]) color_list_2 = set(["Red", "Green"]) Expected Output : {'Black', 'White'} Click me to see the sample solution
30. Write a Python program that will accept the base and
height of a triangle and compute the area. Go to the editor Click me to see the sample solution 31. Write a Python program to compute the greatest common divisor (GCD) of two positive integers. Go to the editor Click me to see the sample solution
32. Write a Python program to get the least common multiple
(LCM) of two positive integers. Go to the editor Click me to see the sample solution
33. Write a Python program to sum of three given integers.
However, if two values are equal sum will be zero. Go to the editor Click me to see the sample solution
34. Write a Python program to sum of two given integers.
However, if the sum is between 15 to 20 it will return 20. Go to the editor Click me to see the sample solution
35. Write a Python program that will return true if the two
given integer values are equal or their sum or difference is 5. Go to the editor Click me to see the sample solution
36. Write a Python program to add two objects if both objects
are an integer type. Go to the editor Click me to see the sample solution