0
Write a function called sixteen lines th as t uses fourlines to print sixteen blank lines.Print sixty four blank lines using thi
8 Réponses
+ 1
Well, you could simply do:
print ("\n"*64)
So not sure why you would need two functions.
def sixteen():
print("\n"*16)
def four():
for x in range(4):
sixteen()
four()
I can't see the point in this, though.
0
Please can you clarify what you mean?
0
see here first create a function called sixteen lines and inside than call a function four lines like this u want to create 64 blank lines
0
answer i posted
0
as lines
0
thanks bro
0
Happy to help. Best of luck.
0
kk