Run with ctrl-shift-f10 never finishes
已回答
I'm new to pycharm, and I don't understand why even a simple hello world program never finishes after ctrl-shift-f10:
def main():
print('hello worldx')
return
if __name__ == '__main__':
main()
I have to hit ctrl-F2 every time to stop it, is that expected?
请先登录再写评论。
Please check that "Show command line afterwards" option is disabled in your Run/Debug configuration.
Ah, that's what I was missing. Thanks.
Note this option is now called "Run with Python console" in 2018.1