I want to print to the center of the terminal and am using:
JavaScript
x
5
1
import shutil
2
3
columns = shutil.get_terminal_size().columns
4
print("hello world".center(columns))
5
Later on I want to overwrite the text with:
JavaScript
1
2
1
print("hell world".center(columns))
2
That is the new text should completely replace the old text.
How can you do that?
Advertisement
Answer
You can use print with end
and flush
parameters
JavaScript
1
2
1
print("hello world".center(columns), end="r", flush=True)
2
Here is a quick example
JavaScript
1
9
1
import shutil
2
from time import sleep
3
4
columns = shutil.get_terminal_size().columns
5
print("hello world".center(columns), end="r", flush=True)
6
sleep(1)
7
print("This is a test run".center(columns))
8
print("The previous line was overwritten")
9