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.
172 def 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
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code