How to use 'multiply list by scalar python' in Python

Every line of 'multiply list by scalar python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
172def v_multiply(scalar, v1):
173 """ Multiply vector by scalar"""
174 vector = []
175 for i, x in enumerate(v1):
176 vector.append('(({})*({}))'.format(scalar, v1[i]))
177 return vector

Related snippets