I want to run a script, which basically shows an output like this:
Installing XXX... [DONE]
Currently, I print Installi
Installi
print() has a built in parameter "end" that is by default set to "\n" Calling print("This is America") is actually calling print("This is America", end = "\n"). An easy way to do is to call print("This is America", end ="")