The following code
message = (
f'Lembrete de que existe uma reserva para amanhã de *{dayAfter}*
{dayAfterCellphone} para a carrinha que estás a usar.'
)
is giving me the following error
SyntaxError: unterminated f-string literal (detected at line 44); Error ID: 49c34848
I found that the reason that is happening is because of the ‘*’ character. Do you know how can I use ‘*’ in an f-string without causing this error?
Thank you!
I searched for the same problem and didn’t find any answer…