Resolved: what is that mean in the function (end='\n\n')
hello,
may i know what i told to do by typing (,end='\n\n' )at the end of the function?
thanks
1 answers ( 1 marked as helpful)
Hi Amal,
'end' is an argument of the print function which dictates what the printed statement should finish with. By default it states a single '\n' which creates a new line. What you see in the video is simply creating two new lines by repeating the same character. Hope that helps!