vote up 1 vote down star

Hi!

I'm not sure if i need lamda, or something else. But still, i need following:

I have an array = [1,2,3,4,5]

I need to put this array, for instance, into another array. But write it all in one line.

for item in array:
    array2.append (item)

I know that this is completely possible to iterate through the items and make it one-line. But googling and reading manuals didn't help me that much... if you can just give me a hint or name this thing so that i could find what that is, i would really appreciate it.

Python geeks, pls help)

UPD: let's say this: array2 = SOME FANCY EXPRESSION THAT IS GOING TO GET ALL THE DATA FROM THE FIRST ONE

(example is NOT real. i'm just trying to iterate through different chunks of data, but that's the best i could come up with)

flag

2  
"But write it all in one line." ... Why? The program does not get better because you use less lines. – Lennart Regebro Oct 9 at 17:32
extremely funny. i'm trying to learn the language. and you're being buggy. THIS EXAMPLE IS NOT REAL, man. – opetrov Oct 9 at 17:35
2  
@opetrov: Being rude to people who are asking for clarification doesn't do much except stop people from wanting to help you. DON'T BE RUDE, man. – Ken White Oct 9 at 17:45
I don't care if the example is real or not. I want to know why you want to do it all in one line. And stop screaming. – Lennart Regebro Oct 9 at 17:52
@ken it wasn't the question. it was a statement. @lennart why not to do it in one line if the language supports that? why do Lambdas & functional extensions? – opetrov Oct 9 at 20:24
show 2 more comments

5 Answers

vote up 8 vote down check

The keyword you're looking for is list comprehensions:

>>> x = [1, 2, 3, 4, 5]
>>> y = [2*a for a in x if a % 2 == 1]
>>> print(y)
[2, 6, 10]
link|flag
actually, yes! that's what i was looking for!!) can you tell me how this thing is called so that i could read more about other possibilities and operators as well?) – opetrov Oct 9 at 17:21
thank you so much! – opetrov Oct 9 at 17:23
BTW, you may also know the following: i have an object: a = { "id": 1, "smth": 2 } i need to add a property to it with a name "smth2", so that my a would be: a = { "id": 1, "smth": 2, "smth2": 3 } – opetrov Oct 9 at 17:25
nm it's dictionary. i've figured it out. – opetrov Oct 9 at 17:36
vote up 5 vote down
for item in array: array2.append (item)

Or, in this case:

array2 += array
link|flag
brilliant :) i will probably need to change the question) – opetrov Oct 9 at 17:20
vote up 1 vote down

If you're trying to copy the array:

array2 = array[:]
link|flag
vote up 1 vote down

If you really only need to add the items in one array to another, the '+' operator is already overloaded to do that, incidentally:

a1 = [1,2,3,4,5]
a2 = [6,7,8,9]
a1 + a2
--> [1, 2, 3, 4, 5, 6, 7, 8, 9]
link|flag
vote up 0 vote down

Even array2.extend(array1) will work

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.