如何从Python代码中清除交互式IPython控制台的屏幕

How to clear the screen of Interactive IPython console from Python code(如何从Python代码中清除交互式IPython控制台的屏幕)
本文介绍了如何从Python代码中清除交互式IPython控制台的屏幕的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚从Jupyter迁移到Spyder。在屏幕的左侧有一个显示输出的控制台。当我重新运行代码时,它一直在添加新行。我想从一个新的屏幕开始。如何? PS1:当我转到IPyhton控制台并编写CLS或Clear时,它可以工作。但我想从Python代码中做到这点。后者不识别该命令,但IPython控制台识别!

PS2:我试过

import os 
os.system('cls')  # on windows

它没有起作用。它会显示一个CMD窗口片刻,然后消失。但Spyder的控制台窗口除了显示新错误外,仍显示旧错误。

推荐答案

(Spyder Maintainer Here)有两种方法可以获得您想要的:

  1. 您可以进入菜单Run > Configuration per file并选择名为Execute in a dedicated console的选项。该选项将在每次执行后清除您的控制台。
  2. 将以下代码添加到您的文件:

    from IPython import get_ipython
    get_ipython.run_line_magic('clear', '')
    

这篇关于如何从Python代码中清除交互式IPython控制台的屏幕的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)