how to keep the text on the samme line pythom code example
Example: print no new line python
print('*', end='')
print('*', end='')
print('*', end='')
# output:
# ***
print('*', end='')
print('*', end='')
print('*', end='')
# output:
# ***