1. python-shell-cls

python shell 中如何实现清屏

# -*- coding: utf-8 -*-
"""
Created on Thu Sep 18 17:54:59 2014

@author: Administrator

python shell 中如何实现清屏

方法1: ctrl+L
方法2:
import os
i=os.system('cls')

"""

import os
i=os.system('cls')