26.5 numpy: slicing arrays write a program to prompt the user to enter integers and then adds them to a list (hint: use a loop here). then convert the list to a numpy array. then find and print a subset of the array that contains the given indexes. for example: Enter values for the list (Q to quit): 12345the printed list would be:['1', '2', '3', '4', '5']and the printed ndarray array would be:[1, 2, 3, 4, 5]NOTE: The list contains strings and the array contains int's. You will need to declare a type when converting a list to an ndarray.Finally, output the substring of the array for the given index(es).For example:Enter the starting index: 2Enter the ending index: 4the printed subset would be: ``` [3, 4]