+ 3
Newlines (Multilines)
I know you can use n\, but I want to use triple quote and it doesn't work. Am I doing it wrong? print ("""a b c d""")
2 ответов
+ 5
Try this:
print ("""a
b
c
d""")
+ 3
You should write as you want to see in the output
I know you can use n\, but I want to use triple quote and it doesn't work. Am I doing it wrong? print ("""a b c d""")