I want to run a script, which basically shows an output like this:
Installing XXX... [DONE]
Currently, I print Installi
Installi
Python appends newline as an end to print. Use end=' ' for python3 for print method to append a space instead of a newline. for python2 use comma at end of print statement.
print("Foo",end=' ') print('Bar')