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

Python Kivy ListView: How to delete selected ListItemButton? -

ruby - How do I merge two hashes into a hash of arrays? -