Question: Write a function scalar_mult(s, v) that takes a number, s, and a list of numbers, v, and returns a new list with the scalar multiple
Write a function scalar_mult(s, v) that takes a number, s, and a list of numbers, v, and returns a new list with the scalar multiple of v by s. The original list v should not be changed. So, for example [1, 2, 3] * 6 is [6, 12, 18]
This is Python.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
