Automatic cursor positioning in Pycharm

When you run your program in Pycharm, and you have an input function in your code, for example input ("Type True or False") . Is there a configuration parameter or something so that the cursor automatically enters the console instead of always clicking there manually?

+4
source share
1 answer

Here is a workaround: Turn Floating Modeon the console. The cursor will go there when the program starts.

Note. You can hide the floating console withShift+Escape

+2
source

Source: https://habr.com/ru/post/1684346/


All Articles