regex?
Esto suena mucho a regex y manipulación de cadenas.
Código Python:
Ver original# Detecta 6 números seguidos o mas.
import re
pattern = re.compile(r'(\d{6,})')
De ahí puedes usar sub, find, match, search, groups, etc... Para hacer mas operaciones
http://docs.python.org/2/library/re.html