15 Respuestas
+ 5
print("This is text\n")
use \n after text
+ 3
It's /n in some languages, (or \n, I don't remember for sure). I think it's the same in JavaScript too.
+ 2
like: print ("i \nhelped \nyou")
+ 2
Caleb Hale its \n .I think that work in C and C+ too
+ 2
Arthur thanks, good to know.
+ 2
Caleb Hale with you want to mark someone use "@" and the name of the person
+ 2
Thanks, Arthur
+ 2
To break line and start text on next line
Use \n
Example : print ( " Hi\nHello\nWorld! ")
This will print output as follows :
o/p = Hi
Hello
World!
+ 1
Tom
You mean
print(“line/nbreak”)
for output
line
break
?
+ 1
\n (but I dont know python..)
+ 1
print() automatically inserts line break
+ 1
Hello, Michael. Do you want know about what will create a line break at Python programming language, is it? For create line break you need will use a special combination of simbols - /n (backslash plus n).