function:
def unique_common(a, b):
I have two lists, lets say:
a = [2, 3, 5, 7, 9]
and another list
b = [5, 8
With sum
and zip
:
>>> a = [2, 3, 5, 7, 9]
>>> b = [5, 8, 4, 1, 11]
>>> sum(count*price for count, price in zip(a,b))
160
could you please tell how to give a lists a and b as parameters to a function like def unique_common(a, b)
>>> def total_price(a, b):
... return sum(count*price for count, price in zip(a,b))
...
>>> a = [2, 3, 5, 7, 9]
>>> b = [5, 8, 4, 1, 11]
>>> total_price(a, b)
160