Using input() without “>?” in pycharm Follow
0
I am new to pycharm and python. I am trying to use input()
. I have a basic but annoying problem. Every time the input prompt is followed with a ">?"
.
For example,
input('what is your name?')
what is your name?>? robin
Out[8]: 'robin'
Is it possible to do it without >?, like this?
input('what is your name?')
what is your name? robin
Out[8]: 'robin'
Please sign in to leave a comment.