clear output alternative for visual studio code in python

Solutions on MaxInterview for clear output alternative for visual studio code in python by the best coders in the world

showing results for - "clear output alternative for visual studio code in python"
Edoardo
24 May 2020
1For Windows
2>>> import os
3>>> clear = lambda: os.system('cls')
4>>> clear()
5
6For Linux the lambda becomes
7>>> clear = lambda: os.system('clear')
similar questions