“Jak wyczyścić Python konsoli” 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

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

Python Clear Console

import os

def clearConsole():
    command = 'clear'
    if os.name in ('nt', 'dos'):  # If Machine is running on Windows, use cls
        command = 'cls'
    os.system(command)

clearConsole()
Cruel Cod

Python Clear Console

import sys

sys.stdout.flush()
Rich Rattlesnake

Odpowiedzi podobne do “Jak wyczyścić Python konsoli”

Pytania podobne do “Jak wyczyścić Python konsoli”

Więcej pokrewnych odpowiedzi na “Jak wyczyścić Python konsoli” w Python

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

Przeglądaj inne języki kodu