Skip to content

Instantly share code, notes, and snippets.

@8dcc
Created September 13, 2021 11:08
Show Gist options
  • Select an option

  • Save 8dcc/20696a8bc6de1fadb8a53f65a4c4f36d to your computer and use it in GitHub Desktop.

Select an option

Save 8dcc/20696a8bc6de1fadb8a53f65a4c4f36d to your computer and use it in GitHub Desktop.
Delete a number of lines from the terminal with sys
import sys
lines_to_delete = 3
for line in range(lines_to_delete):
CURSOR_UP_ONE = '\x1b[1A'
ERASE_LINE = '\x1b[2K'
sys.stdout.write(CURSOR_UP_ONE)
sys.stdout.write(ERASE_LINE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment