Python Shell中清屏一般有两种方法。

1、使用os模块

import os     #加载os模块
os.system("cls") # windows上执行cls命令
os.system("clear") # linux上执行clear命令

相关推荐:《Python教程》

上图是linux上的示例,按下回车键后,马上清除所有显示内容。

2、使用subprocess模块

import subprocess #加载subprocess模块
subprocess.call("clear") # linux上借助于call执行clear命令
subprocess.call("cls", shell=True) # windows上执行cls命令

   

上图是linux上的示例,按下回车键后,马上清除所有显示内容。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python怎样清屏