Aug-12-2024, 09:55 AM
We need to be able to automatically extend our list with multiple other ones, here's an example:
How it works now:
Thanks in advance!
How it works now:
sales_w1 = [7,3,42,19,15,35,9] sales_w2 = [12,4,26,10,7,28] sales = [] sales.extend(sales_w1) sales.extend(sales_w2)But could've been this:
sales_w1 = [7,3,42,19,15,35,9] sales_w2 = [12,4,26,10,7,28] sales = [] sales.extend(sales_w1, sales_w2)How do I suggest the Python devs and contributors to get this function on board?
Thanks in advance!