Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I run a function on a loop so all the results go straight into a list and is there a way to run a function which acts on all the values in a list?

share|improve this question
I agree with untypable name, you need to clarify, use an example – Vinko Vrsalovic Nov 3 '08 at 16:56
@Vinko: untypable, but not uncopiable :) – tzot Nov 5 '08 at 8:23

3 Answers

up vote 6 down vote accepted

Theres a couple ways to run a function on a loop like that - You can either use a list comprehension

test = list('asdf')
[function(x) for x in test]

and use that result

Or you could use the map function

test = list('asdf')
map(function, test)

The first answer is more "pythonic", while the second is more functional.

EDIT: The second way is also a lot faster, as it's not running arbitrary code to call a function, but directly calling a function using map, which is implemented in C.

share|improve this answer
1  
important note - the second way is much, much faster – Claudiu Nov 22 '08 at 20:51

Your question needs clarification.

run a function on a loop

new_list= [yourfunction(item) for item in a_sequence]

run a function acting on all values in a list

Your function should have some form of iteration in its code to process all items of a sequence, something like:

def yourfunction(sequence):
    for item in sequence:
        …

Then you just call it with a sequence (i.e. a list, a string, an iterator etc)

yourfunction(range(10))
yourfunction("a string")

YMMV.

share|improve this answer

This example shows how to do it (run it in an interpreter)

>>> def square(x):
...  return x*x
...
>>> a = [1,2,3,4,5,6,7,8,9]

>>> map(square,a)
[1, 4, 9, 16, 25, 36, 49, 64, 81]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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