SyntaxFix
Write A Post
Hire A Developer
Questions
To print any amount of lines between printed text use:
print("Hello" + '\n' *insert number of whitespace lines+ "World!")
print("Hello" + '\n' *
+ "World!")
'\n' can be used to make whitespace, multiplied, it will make multiple whitespace lines.