+ 2
Line spacing in output
Can you space your lines out for it to show in the output area? Like for it to spaced out when your run the code? Because I tried using the three quotation marks but when it ran, it was still together with no spacing. Can that be fixed?
2 ответов
+ 4
Like this? Three methods shown...
https://code.sololearn.com/cR5LJOQJ63j3
+ 1
You can also use
print(arg1, arg2, sep="\n\n")
This will separate the passed arguments by an empty line.