Löschen Sie die Ausgabealternative für den Visual Studio -Code in Python
For Windows
>>> import os
>>> clear = lambda: os.system('cls')
>>> clear()
For Linux the lambda becomes
>>> clear = lambda: os.system('clear')
kuder