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 ' '.