print characters in a single line rather than one at a time python code example
Example 1: print progress without next line python
print i/len(some_list)*100," percent complete \r",
Example 2: how to print a word in different line in python
print("first line", "second line", sep="\n")
print("first line\nSecond line")