[
    Token(type=FSTRING_START, value='f"""', start=0, end=4),
    Token(type=FSTRING_MIDDLE, value="\nHello, ", start=12, end=20),
    Token(type=OP, value="{", start=12, end=13),
    Token(type=NAME, value="world", start=13, end=18),
    Token(type=OP, value="}", start=18, end=19),
    Token(type=FSTRING_MIDDLE, value="!\n", start=21, end=23),
    Token(type=FSTRING_END, value='"""', start=21, end=24),
]
