xxxxxxxxxx
The end parameter in the print function is used to add any string at
the end of the output of the print statement in python.
By default, the print function ends with a newline.
Passing the whitespace to the end parameter (end=‘ ‘) indicates
that the end character has to be identified by
whitespace and not a newline.
xxxxxxxxxx
for i in range(1, 11):
for j in range(1, 11):
print(i * j, end=" ")
print("\t\t")