Can we divide two lists in Py | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can we divide two lists in Py

24th Sep 2020, 4:43 AM
Ashutosh Pattnaik
Ashutosh Pattnaik - avatar
3 Answers
+ 3
Importing Numpy: import numpy Creating a Numpy array: na1 = numpy.array([0, 2, 1, 5]) When you divide a Numpy array with a number you'll get a copy of the array, where each item has applied the operator: na1 / 2 ---> numpy.array([0.0, 1.0, 0.5, 2.5]) You can also divide a numpy array with another equal sized array, where the items at the same indices are divided: numpy.array([100]*4) / numpy.array([2, 4, 8, 16]) ---> numpy.array([50.0, 25.0, 12.5, 6.25])
24th Sep 2020, 5:27 AM
Seb TheS
Seb TheS - avatar
+ 4
Describe your idea of "divide two lists" clearly, and specify a relevant language in your thread's tags. 'how' is not a proper word for tags, up there ☝
24th Sep 2020, 4:54 AM
Ipang
+ 1
I don't know, how you want to divide a list, but atleast Numpy arrays have some predefined methods for it.
24th Sep 2020, 5:14 AM
Seb TheS
Seb TheS - avatar