summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a299.py
blob: a217c0d7f55eebb6be97f72fbda6f55d8944b3b1 (plain)
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