+ 1
I am confused, could anyone tell me what does the "/n" means?
Does it means starting a new line in the presentation?
10 odpowiedzi
+ 5
it means that you get in a new line. like when you type ("hello world") it will output as
hello world
but when you type ("hello\nworld")
it will output as
hello
world
+ 3
Use the backslash \n not this /n
+ 2
/n used for create new line in programing. if gonna type print("hello /n world").the word ""hello" will print in first line .then next new line will be "world"
+ 2
welcome
+ 2
/n does not have any special meaning. it should be \n for new line
+ 1
So when a three quote sign with multiple lines in it is using in the Python grammar, it will print directly as multiple line…?The same as using "/n", isn't it?
+ 1
yea
0
I got it, thx bro.
0
yes
0
It is used to break the sentence and start a new line. And its "\n" not "/n"