次の文字列で、行が数字で始まっているか、数字で終わっているかを言う方法
line="He is a German called Mayer12345"
re.compile(r".*\d+\w$")
line="12He is a German called Mayer"
re.compile(r"^\d+\w .*")
次の文字列で、行が数字で始まっているか、数字で終わっているかを言う方法
line="He is a German called Mayer12345"
re.compile(r".*\d+\w$")
line="12He is a German called Mayer"
re.compile(r"^\d+\w .*")