代码之家  ›  专栏  ›  技术社区  ›  Steven Tang

如何在googlecolaboratory中以编程方式清除Python输出?

  •  1
  • Steven Tang  · 技术社区  · 6 年前

    这个问题是针对Google Colaboratory的,虽然一些解决方案可能在普通的Python interperter中工作,但Google Colaboratory似乎不允许我以编程方式清除Python解释器输出。

    我已经尝试过但不起作用的解决方案:

    import os
    os.system('cls')
    os.system('clear')
    !cls
    !clear
    
    2 回复  |  直到 6 年前
        1
  •  15
  •   二进制    6 年前

    from IPython.display import clear_output clear_output()

    这对我很有用。

        2
  •  1
  •   Aneesh R P Prakkulam    3 年前
    from google.colab import output
    
    
    
      output.clear()
    
        3
  •  -1
  •   Bob Smith    6 年前

    import os
    os.kill(os.getpid(), 9)