+ 2
Use the '\n' (new line) modificator. print("first line", end="\nnew line") print("first line\nsecond line\nthird line") lines = 4 print("first line", end="\nnew line" * lines) print('\n' * lines)
2nd Nov 2017, 10:10 PM
Boris Batinkov
Boris Batinkov - avatar