summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a312.py
blob: daf00bc8246d0c1176289e70b3256c9c4837b8a2 (plain)
1
2
3
4
5
6
7
import re
def end_num(string):
    text = re.compile(r".*[0-9]$")
    if text.match(string):
        return True
    else:
        return False