How to disable auto print in PyCharm in Run Console?
Answered
I am using PyCharm 2018.2.4 for learning Python 3. I have connected PyCharm to Virtual Machine through SSH. But when I click Run button then type some strings in Run Console, it automatically print that strings whether there is no "print" function.
My Code:
if __name__ == '__main__':
str1 = input()
Output in Run Console:
ssh://root@192.168.1.111:22/usr/bin/python -u /root/LearnPython/hello.py
Hello World! <== This is my input!
Hello World! <== It automatically prints!
Process finished with exit code 0
This is my Print Screen:

Thanks in advance!
Please sign in to leave a comment.
Hi,
This looks like a bug. I have filed it to our issue tracker https://youtrack.jetbrains.com/issue/PY-32448, please follow it for updates. See https://intellij-support.jetbrains.com/hc/en-us/articles/207241135-How-to-follow-YouTrack-issues-and-receive-notifications if you are not familiar with YouTrack.