Answers for "soustraire deux listes python"

0

soustraire deux listes python

>>> a = [1, 2, 3, 4, 5]
>>> b = [7, 8, 9, 1, 2]
>>> c = [b_elt - a_elt for a_elt, b_elt in zip(a, b)]
>>> c
[6, 6, 6, -3, -3]
Posted by: Guest on July-15-2020

Code answers related to "soustraire deux listes python"

Python Answers by Framework

Browse Popular Code Answers by Language