Lastly, we want to notify the user that the email is already in use. We'll use a formatted string to print the string that email holds.
email
Make sure to pick print followed by ( and then f, "{email} is already in use", ).
print
(
f
"{email} is already in use"
)