본문 바로가기
파이썬 공부

파이썬 콘솔 터미널 화면 클리어 방법 - Python terminal clear

by AI 디코더 2022. 4. 2.

맥/리눅스 계열은 아래 코드

import os
clear = lambda: os.system('clear')
clear()

 

윈도우는 아래 코드
import os
clear = lambda: os.system('cls')
clear()
 

How to clear terminal, interpreter console in Python

댓글