how to clear python console in pycharm

This question is a bit old but I thought I would leave this here for other people who are wondering how to do this

How to

Download this package https://github.com/asweigart/pyautogui. It allows python to send key strokes.

You may have to install some other packages first

If you are installing PyAutoGUI from PyPI using pip:

Windows has no dependencies. The Win32 extensions do not need to be installed.

OS X needs the pyobjc-core and pyobjc module installed (in that order).

Linux needs the python3-xlib (or python-xlib for Python 2) module installed. Pillow needs to be installed, and on Linux you may need to install additional libraries to make sure Pillow's PNG/JPEG works correctly. See:

Set a keyboard shortcut for clearing the run window in pycharm as explained by Taylan Aydinli

CMD + , (or Pycharm preferences);

Search: "clear all"; Double click ->

Add keyboard shortcut (set it to CTRL + L or anything)

Enjoy this new hot key in your Pycharm console!

Then if you set the keyboard shortcut for 'clear all' to Command + L use this in your python script

import pyautogui
pyautogui.hotkey('command', 'l')
Example program

This will clear the screen after the user types an input.

EDIT: If you aren't focused on the tool window then your clear hot-key won't work, you can see this for yourself if you try pressing your hot-key while focused on, say, the editor, you won't clear the embedded terminals contents.

PyAutoGUI has no way of focusing on windows directly, to solve this you can try to find the coordinate where the run terminal is located and then send a left click to focus, if you don't already know the coordinates where you can click your mouse you can find it out with the following code:

import pyautogui
from time import sleep
sleep(2)
print(pyautogui.position())
An example of output:

(2799, 575)
and now the actual code:

import pyautogui

while True:
    input_1 = input("?")
    print(input_1)
    pyautogui.click(x=2799, y=575)
    pyautogui.hotkey('command', 'l')

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source