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

I want to do something like this, but in python :

select * from [list] where [element at index n] = 'hello'

So far, I have this

    cells = [' ','hello',' ',' ',' ',' ',' ',' ',' ']
    emptySpots = []

    for s in range(len(cells)):
        if cells[s] == 'hello':
            emptySpots.append(s)

This gives me a list of the indexes of the cells with 'hello' in them, but I bet theres a more straightforeward (pythonesque) way to do this.

What would be nice is a one liner that just returns the count of the number of elements in cells that equal ' '.

share|improve this question

4 Answers

up vote 5 down vote accepted

Your question is confusing. Your code does not get the indexes of the empty cells but of the element hello.

It seems you have two questions in one?

If you really want to get the number of "empty cells" like you claim in your last sentence, you can use list.count:

empty_spots = cells.count(' ')
share|improve this answer
There are two unrelated questions in the post. I answered the first one, you answered the second one. – Sven Marnach May 5 '11 at 22:48
@SvenMarnach: Lets see what the OP has to say... – Trufa May 5 '11 at 22:52
Ya, I sorta did ask in a confusing manner, sorry. Basically, my problem could be solved by selecting either the empty or non empty cells. I was unaware count() could work the way you showed, and from there I was able to get it to do what I wanted. Thank you. – jason May 5 '11 at 23:11

I wasn't sure if you wanted to return a list of matching elements from a list (the title being "in python, using in, get specific elements"), or if you wanted to count all occurrences of them. You can use filter or a list comprehension to return matching elements from a list, and then call len on the result to count the number of times it occurs. If all you care about is finding the number of times an item occurs in a list list.count is the best approach.

len(filter(lambda x: 'hello' == x, cells))

len([x for x in cells if x == 'hello'])

And as answered here (definitely the nicest way if you just wanted to count them!): cells.count(' ')

Here's a simple bench of list comprehension vs filter:

% python -m timeit -s "data = ['hello' for x in range(100000)]" "[x for x in data if x == 'hello']"
100 loops, best of 3: 6.97 msec per loop
% python -m timeit -s "data = ['hello' for x in range(100000)]" "filter(lambda x: x == 'hello', data)"
100 loops, best of 3: 13.3 msec per loop
share|improve this answer
Anyone want to compare performance? – Dhaivat Pandya May 5 '11 at 22:44
This one does not return the indices. Please read the question again. – Sven Marnach May 5 '11 at 22:44
I thought he just wanted to count a recurring item in the list. – zeekay May 5 '11 at 22:50
@SvenMarnach: Ok fair enough, but the OP may have explained his question incorrectly since his code does not return the keys. – Trufa May 5 '11 at 22:50
@SvenMarnach: I you down-voted, IMHO, the question is not clear enough to donw-vote, plus @zeekay updated his answer. – Trufa May 5 '11 at 22:53
show 2 more comments
[i for i in range(len(cells)) if cells[i] == "hello"]

or

[i for i, s in enumerate(cells) if s == "hello"]
share|improve this answer
O man, this is new to me, will have to play with this syntax. Thank you. – jason May 5 '11 at 23:11

How about this?

cells = [' ','hello',' ',' ',' ',' ',' ',' ',' ']
matches = map(lambda x: x if cells[x] == 'hello' else False, range(len(cells)))
emptySpots = filter(lambda x: x == False, matches)
share|improve this answer
1  
That's twisted. – Trufa May 5 '11 at 22:55
lol yes that is. I like it. Thanks! – jason May 5 '11 at 23:14

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.