0
Can someone explain this to me? I didn't understood
why do we use "\n"
6 ответов
+ 2
This symbol is what the python interpreter recognizes as a new line; like when you hit 'enter' in a text document!
0
Input: \"
0
it is for starting a new line
0
starting a new line
0
what do you refer to a new line?
0
>>> print ("hello\n\nworld')
hello
world
>>>