0
How to defined this function to print 25 new lines
def new_line(): print('.') def three_lines(): print() new_line() new_line() new_line()
4 Antworten
+ 3
it can easy to using for loop for this.
+ 2
Using loops
+ 2
for x in range(25):
new_line()
+ 2
print("something\n" * 25)