Write a NumPy program to create a vector with values ranging from 15 to 55 and print all values except the first and last
import numpy as np v = np.arange(15,55) print("Original vector:") print(v) print("All values except the first and last of the said vector:") print(v[1:-1])
Sample Output:
Original vector: [15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54] All values except the first and last of the said vector: [16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer