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

Trying to take a string of tags and only save the first 10 that only have less than 2 words. Don't know if this code is the right direction or not...

mystring = 'one, two, three, three three three, four four four, five, six'

for text in mystring:
    number = len(mystring.split())
        if text >= 2:

print number

basically want to output: one, two three, five, six

share|improve this question

3 Answers

up vote 1 down vote accepted
[item.strip() for item in mystring.split(',') if len(item.split()) < 2]

"The result of removing whitespace from either end, of each of those items resulting from splitting mystring on commas, which produces less than two sub-items if split on whitespace".

share|improve this answer
>>> mystring = 'one, two, three, three three three, four four four, five, six'
# first separate the string into into a list and strip the extraneous spaces off..
>>> str_list = map(lambda s: s.strip(), mystring.split(','))
# then create a new list where the number of "numbers" in each list item are less or equal than two
>>> my_nums = filter(lambda s: len(s.split()) <= 2, str_list))
>>> print my_nums
['one', 'two', 'three', 'five', 'six']
share|improve this answer
this worked, only change the < to <= to get the ones with 2 words also. – tim Jan 24 '11 at 22:11
well you said less than 2 words :) But cool, I'm glad that worked out. – sdolan Jan 24 '11 at 22:24

a bit different ...

mystring = 'one, two, three, three three, four, five, six'

for text in mystring.split(","):
    number = len(text.strip().split()) #split by default does it by space, and strip removes spaces at both ends of the string
    if number < 2:
        #this string contains less than two words
        print text

first split by , and then for every do a another split but this time by space.

share|improve this answer
1  
didn't you mean < 2? – Arkadiy Jan 24 '11 at 21:49
yes sorry ... fixed - thanks – msalvadores Jan 24 '11 at 21:51
don't need the count, just the tags that are under 2 words. – tim Jan 24 '11 at 21:54
well then just print my string ... answer changed – msalvadores Jan 24 '11 at 21:56
Still doesn't work. You are looking at the length of mystring when you do the split. – Mark Loeser Jan 24 '11 at 21:58
show 3 more comments

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.