Posts: 11
Threads: 4
Joined: Mar 2020
Mar-24-2020, 10:50 AM
(This post was last modified: Mar-24-2020, 11:07 AM by buran.)
Hello,
I would like to add every element of a list on every list from a list of lists. Ie :
H = [[1,2],[3,4]]
I = [5,6] With this result :
Output: J = [[1,2,5], [3,4,5], [1,2,6], [3,4,6]]
I don’t find the good logic.
Ie :
j = []
for x in h :
for y in i :
j.append(h+i)
print (j) Gives me :
Output: [[[1, 2], [3, 4], 5, 6]]
[[[1, 2], [3, 4], 5, 6], [[1, 2], [3, 4], 5, 6]]
[[[1, 2], [3, 4], 5, 6], [[1, 2], [3, 4], 5, 6], [[1, 2], [3, 4], 5, 6]]
[[[1, 2], [3, 4], 5, 6], [[1, 2], [3, 4], 5, 6], [[1, 2], [3, 4], 5, 6], [[1, 2], [3, 4], 5, 6]]
Or again :
k = []
for w in h :
for z in i :
o = [w,z]
k.append(o)
print (k) Will give :
Output: [[[1, 2], 5]]
[[[1, 2], 5], [[1, 2], 6]]
[[[1, 2], 5], [[1, 2], 6], [[3, 4], 5]]
[[[1, 2], 5], [[1, 2], 6], [[3, 4], 5], [[3, 4], 6]]
I’ve tried some tests with map, but nothing conclusive.
Can you help me please to solve my problem ?
Posts: 1,950
Threads: 8
Joined: Jun 2018
Mar-24-2020, 12:36 PM
(This post was last modified: Mar-24-2020, 12:36 PM by perfringo.)
My subjective opinion is that 'not finding good logic' starts with bad naming habits. What are H and I? The last name ('I') I would call 'crime against readers of your code', PEP8 Names to avoid:
Quote:Never use the characters 'l' (lowercase letter el), 'O' (uppercase letter oh), or 'I' (uppercase letter eye) as single character variable names.
In some fonts, these characters are indistinguishable from the numerals one and zero. When tempted to use 'l', use 'L' instead.
I add that 'l' and 'I' are also pretty similar to each other.
Now to problem at hand: list comprehension could be suitable tool:
>>> target = [[1,2],[3,4]]
>>> source = [5,6]
>>> [[*item, num] for num in source for item in target]
[[1, 2, 5], [3, 4, 5], [1, 2, 6], [3, 4, 6]]
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy
Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Posts: 11
Threads: 4
Joined: Mar 2020
Mar-28-2020, 08:34 AM
(This post was last modified: Mar-28-2020, 08:34 AM by PUP280.)
Hello,
At first, thank you for the edit from the moderator, I had not found how to present it, now I know. Thanks again.
For the letters, thank you. I'm a beginner, I knew that but as it was just an example I've believed it was ok. Sorry, I've noticed and I'll don't do that again.
Now, about the solution, I thank you. Can you give me an explanation with it please ? I search to understand everything.
For what I see, you've added a star in front of item ; is that the way to do what I want ? Have you a link where it's teaching and can you write the long version to help my comprehension ?
On Internet, I can't find an explanation (I've read all the tutorial section on Python documentation, maybe I've jumped something). Item isn't a method which gives a dictionnary ?
Here item is just a word (I've tried your code changing item to be sure), but it a function too no ?
Sorry for my lack of knowledge.
Posts: 1,950
Threads: 8
Joined: Jun 2018
May-02-2020, 12:37 PM
(This post was last modified: May-02-2020, 12:38 PM by perfringo.)
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy
Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Posts: 353
Threads: 13
Joined: Mar 2020
(Mar-24-2020, 10:50 AM)PUP280 Wrote: Or again :
k = []
for w in h :
for z in i :
o = [w,z]
k.append(o)
print (k) Will give :
Output: [[[1, 2], 5]]
[[[1, 2], 5], [[1, 2], 6]]
[[[1, 2], 5], [[1, 2], 6], [[3, 4], 5]]
[[[1, 2], 5], [[1, 2], 6], [[3, 4], 5], [[3, 4], 6]]
I’ve tried some tests with map, but nothing conclusive.
Can you help me please to solve my problem ? Had you realized, the code is actually right just that the print statement is in the wrong place. It should be :
H = [[1,2],[3,4]]
I = [5,6]
k = []
for w in H :
for z in I :
o = [w,z]
k.append(o)
print (k) And it gives output:
Output: [[[1, 2], 5], [[1, 2], 6], [[3, 4], 5], [[3, 4], 6]]
Posts: 11
Threads: 4
Joined: Mar 2020
|