vote up 3 vote down star
3

I have a list say:

['batting average', '306', 'ERA', '1710']

How can I convert the intended numbers without touching the strings?

Thank you for the help.

flag

4 Answers

vote up 35 vote down check
changed_list = [int(f) if f.isdigit() else f for f in original_list]
link|flag
2  
An elegant one-liner. Behold the power of list comprehensions. – mkClark May 4 at 22:07
was thinking on similar lines – Casey Jul 28 at 1:31
vote up 0 vote down

Thanks for the help guys... I ended up using Alex's code

link|flag
Then mark it as the answer. – projecktzero May 4 at 17:55
vote up 3 vote down

Try this:

def convert( someList ):
    for item in someList:
        try:
            yield int(item)
        exception ValueError:
            yield item

newList= list( convert( oldList ) )
link|flag
vote up 5 vote down

The data looks like you would know in which positions the numbers are supposed to be. In this case it's probably better to explicitly convert the data at these positions instead of just converting anything that looks like a number:

ls = ['batting average', '306', 'ERA', '1710']
ls[1] = int(ls[1])
ls[3] = int(ls[3])
link|flag
Yep this is the best solution for the static case, while Alex's is best for the dynamic case. – Unknown May 4 at 6:20

Your Answer

Get an OpenID
or

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