Question: In Python, using a function and a list comprehension, create a new list that includes the result from dividing each number from x by the
In Python, using a function and a list comprehension, create a new list that includes the result from dividing each number from x by the corresponding number in y. For the cases when the divisor is 0, the new list should include None.
x = [-1, 0, 2, 178, -17.2, 12, -2, -3, 12]
y = [0, 5, 0, 2, 12, 0.5, 0, 0.25, 0]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
