import re def end_num(string): text = re.compile(r".*[0-9]$") if text.match(string): return True else: return False