Python: Clear the screen or terminal
Clear Terminal
Write a Python program to clear the screen or terminal.
Sample Solution:
Python Code:
# Import the 'os' and 'time' modules to work with system commands and time-related functions, respectively.
import os
import time
# Execute the 'ls' command to list the contents of the current directory.
os.system("ls")
# Pause the program's execution for 2 seconds.
time.sleep(2)
# Clear the terminal screen. (This comment is not entirely accurate; 'os.system('clear')' is used to clear the terminal screen.)
os.system('clear')
Flowchart:
Python Code Editor:
Previous: Write a Python program to get the system time.
Next: Write a Python program to get the name of the host on which the routine is running.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics