Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python clear screen

# There are ANSI Escape Control Characters that can be used to clear the screen
# https://en.wikipedia.org/wiki/ANSI_escape_code#Control_characters
# ^H can be used to move the cursor left most (start line)
# and ^J can be used clear the part of the screen from the cursor to the end of the screen
# together
print("33[H33[J")
 
PREVIOUS NEXT
Tagged: #python #clear #screen
ADD COMMENT
Topic
Name
1+7 =