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

jpa - Passing entitymanager from reflection method -

frame rate - JAVA simple fps animation(how can i work with?) -