w3resource

Python: Create a new list dividing two given lists of numbers

Python List: Exercise - 176 with Solution

Write a Python program to create a new list by dividing two given lists of numbers.

Sample Solution:

Python Code:

def dividing_two_lists(l1,l2):
    result = [x/y for x, y in zip(l1,l2)]
    return result 
nums1 = [7,2,3,4,9,2,3]
nums2 = [9,8,2,3,3,1,2]
print("Original list:")
print(nums1)
print(nums1)
print(dividing_two_lists(nums1, nums2))

Sample Output:

Original list:
[7, 2, 3, 4, 9, 2, 3]
[7, 2, 3, 4, 9, 2, 3]
[0.7777777777777778, 0.25, 1.5, 1.3333333333333333, 3.0, 2.0, 1.5]

Pictorial Presentation:

Python List: Create a new list dividing two given lists of numbers.

Flowchart:

Flowchart: Create a new list dividing two given lists of numbers.

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:


Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to find the minimum, maximum value for each tuple position in a given list of tuples.
Next: Write a Python program to find common elements in a given list of lists.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Returns True if the provided function returns True for every element in the list, False otherwise:

Example:

def tips_every(lst, fn=lambda x: x):
  return all(map(fn, lst))

print(tips_every([2, 4, 3], lambda x: x > 1))
print(tips_every([1, 2, 3]))

Output:

True
True