Python control flow and loops quiz doubt

Please explain meaning of end=" " in question 13

By default, the value of this parameter is ‘\n’, i.e. the new line character.If you dont want to go to the next line after executing the print statement you write end=" " which will give a space after your print() statement.

So for new line we just write print(“aa”, end)?

New line is added automatically.

print(“aaa”)

The above line will create a new line by default

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.