We also want to display the updated number of unread emails they have. Use another print statement to display the value of unread.
unread
Make sure to pick print followed by ( and then f, "You have {unread} unread emails", ).
print
(
f
"You have {unread} unread emails"
)