Reading specific characters from a file in Python -


suppose want read file in format:

2  300   234 2 3  23444 

if use readline() iterates on entire line. want read numbers nothing else. how should this??

you can use re module.

import re  numbers = re.findall('[0-9]+', readline()) 

it return numbers list.


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -