To reuse an f-string, we can save it in a variable, like here with status and f"{new} new messages".
status
f"{new} new messages"
Make sure to pick status, followed by =, and finally f"{new} new messages".
=