1 2 3 4 5 6 7
import re def match_num(string): text = re.compile(r"^5") if text.match(string): return True else: return False