+ 4
How to have a blank line between each multiplication table?
https://code.sololearn.com/cLmmZWwL3QgP/?ref=app I want to have a blank line in the ending of every multiplication table. How do I do that?
6 odpowiedzi
+ 2
for i in range(1, 5):
for j in range(1, 11):
print(i, 'x', j, '=', i * j)
print()
+ 2
Then you have intended it wrongly
Here:
https://code.sololearn.com/cCxsP4JfBo26/?ref=app
+ 2
ohh bro thanks. yes I was did it wrongly
+ 1
I wnat to have a blank line in the ending like 1 x 10 = 10 then a blank line.
+ 1
yes I tried. But it did a blank line in every line.
0
Did you try above snippet?
Isn't it like what you need?