Write a Python program that has a list of 5 numbers [2, 3, 4, 5,
6). Print the first 3 elements from the list using slice
expression. a. Extend this program in a manner that the elements in
the list are changed to (6, 9, 12, 15, 18) that means each element
is times 3 of the previous value. b. Extend your program to display
the min and max value in the list.