import re

strings = [
    "tfd_fr_ve_t1_v1_f3_201234_yyymmmdd",
    "phone_football_androind_1_v1_te_t1_fe",
    "phone_football_ios_v1_t1",
    "foot_cricket2345678_f12_t4",
    "tfd_fr_ve_t1_v1_f3_201234_yyymmmdd",
    "def_000_t4_f1",
    "file_job_1234567_f1_t55",
    "ROKLOP_f33_t44",
    "agdcv_t45",
    "gop_gop_f1_t14_v14",
    "file_op_v1_t1",
    "fop_f1_v1_1223",
    "test"
]
pattern = r"_[ftv][1-9]\d?(?!\d)"
for s in strings:
    if re.search(pattern, s):
        print(f"YES, present in '{s}' ")
    else:
        print(f"NO, not present in '{s}'")