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.
Array creation and indexing
Evenly spaced values
Report a typo
Sample Input 1:
15
25
6Sample Output 1:
23.0Write a program in Python 3
import numpy as np
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.