“Clear Console w Python” Kod odpowiedzi

Python Clear Console

import sys, os

os.system('cls')
Weeke

Jak wyczyścić Python konsoli

import os
os.system('cls' if os.name == 'nt' else 'clear')
Calm Crocodile

Przezroczysty ekran Python

Import os
 
os.system("clear") # Linux - OSX
os.system("cls") # Windows
Clever Crab

Python Clear Console

print('\033[H\033[J', end='')
Dead Dog

Clear Console Python

import sys
import os

if os.name == 'nt':
	os.system('cls')
else:
	os.system('clear')
    
# the reason i used "if os.name == 'nt'" is because the operating system "nt"
# is windows, and windows can only use the command "cls" to clear the
# console, if a linux user is using your program then it'll throw an error
# because only command prompt uses "cls"
The God of Monkeys

Clear Console w Python

As you mentioned, you can do a system call:

For Windows
>>> import os
>>> clear = lambda: os.system('cls')
>>> clear()

For Linux the lambda becomes
>>> clear = lambda: os.system('clear')
Ankur

Odpowiedzi podobne do “Clear Console w Python”

Pytania podobne do “Clear Console w Python”

Więcej pokrewnych odpowiedzi na “Clear Console w Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu