Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to extract numbers from a list in python

a = ['1 2 3', '4 5 6', 'invalid']
numbers = []
for item in a:
    for subitem in item.split():
        if(subitem.isdigit()):
            numbers.append(subitem)
print(numbers)

['1', '2', '3', '4', '5', '6']
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #extract #numbers #list #python
ADD COMMENT
Topic
Name
2+2 =