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