I'm trying to separate some outputted text in Python 3. Heres sorta an example of what iv got now
print("words")
print("")
print("")
print("")
print("")
print("")
print("")
#(Print would keep going on like 50 times)...
print("more words")
now putting all those prints is annoying and i need the words to be vertically seperated. like this
words
more words
Any ideas on how to separate huge verticle distances. Thanks :)
print('\n' * 50)\n. Ex :print("words \n\n\n\n\n\n")OR in your caseprint('\n' * 50)