utils.py

1
2
3
4
5
import re


def filter_guest_accounts(term) -> bool:
    return re.fullmatch(r"Guest\d{4}", term)