with coffee:
yes = """
v1 v2 5
2 someword7 3
""".splitlines()[1:]
no = """
word 2 3
1 2
""".splitlines()[1:]
import re
pattern = "(\w*\d\s+?)(\w*\d\s+?)(\d)$"
rx = re.compile(pattern)
for line in yes:
m = rx.match(line)
assert m
print([part.rstrip() for part in m.groups()])
for line in no:
m = rx.match(line)
assert not m
_______________________________________________
Tutor maillist - [email protected]
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor
