Syntax error for no reason

In the programming assignment of the third week , in exercise 4(Initializing parameters) , I get a syntax error for no reason :
image
What may be the reason behind it ?

Hi Saadeddine_Tazili,

Sorry to read that you are facing errors. Did you try to edit/change something in the cell out of the scope of the exercise?
For me it could be an indentation error or maybe trying to use a command in the cell that you are not allowed to use. Trying to guess here.

Best,

Rosa

Syntax errors are often caused by bad code or typos on the previous line to where it is reported.
So look at the code that precedes that print() statement.

Thank you a lot , I just forgot to close parentheses in the previous line :sweat_smile:

Yeah that was the case , thank you