Evenly spaced values

Report a typo

Create a new array with evenly spaced values. You will find three integers in the input — a start element, an end element, and a number of steps. Your task is to print the penultimate value of the created array.

Sample Input 1:

15
25
6

Sample Output 1:

23.0
Write a program in Python 3
import numpy as np
___

Create a free account to access the full topic