Question
Sometimes you wi only want part of an array. 'Slicing' arrays is the way to do it in python. For example, the expression data[a: b]
Sometimes you wi only want part of an array. 'Slicing' arrays is the way to do it in python. For example, the expression data[a: b] gives the subarray with elements from a to b-1 from data. If either a or b are omitted the slice goes from the beginning or to the end. With multi-dimensional data, slices are still separated by commas, e.g. data[a:b,c:d]
Create a program that adds the first and third columns of the following data, then prints the result (Thene should be 5 numbers in the result)
import numpy as np
data = up.array([[ 1, 2, 3, 4]
[4,3,2,1]
[-1,1,-1,1]
[o,o,1,o]
[9,16,4,25]])
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started