Printing multiple blank lines in python
Just use multiplication, this will repeat your string however many times you'd like, in this case new lines
>>> print('\n' * 40)
Just use multiplication, this will repeat your string however many times you'd like, in this case new lines
>>> print('\n' * 40)