Answers for "how to clear screen in python 3.7 shell in windows 10"

10

python interpreter clear screen

import os

# Windows
os.system('cls')

# Linux
os.system('clear')
Posted by: Guest on May-23-2020
0

clear screen python cmd

>>> import os
 >>> clear = lambda: os.system('cls')
 >>> clear()
Posted by: Guest on October-12-2021

Code answers related to "how to clear screen in python 3.7 shell in windows 10"

Python Answers by Framework

Browse Popular Code Answers by Language