how to print on the same line in python 3 code example
Example: print no new line python
print('*', end='')
print('*', end='')
print('*', end='')
# output:
# ***
print('*', end='')
print('*', end='')
print('*', end='')
# output:
# ***