Reputation: 1101
In PyCharm (I assume other IDE's as well), when I press "run" in the taskbar, there are two options:
Run (Shift f10)
Run... (Alt Shift f10)
What is the difference between these two? I could not find this online.
ps. Is this the correct stackexchange site for this question? I didn't know which one fit best.
Upvotes: 0
Views: 297
Reputation: 106480
In IntelliJ-based IDEs (and PyCharm is one of them):
main
or a test, or whatever PyCharm executed on your behalf.Note that this is distinct and separate from debugging. Both debug commands have the same convention as the Run commands, and both do effectively the same thing with the difference in being that the debugger will be attached in a debug context.
Upvotes: 0
Reputation: 1694
Shift+Alt+F10 - Quickly select run/debug configuration and run/edit it. Shift+F10 - Run application.
This information is from: PyCharm 2018.3 Help
But the question is totally and completely not about data-science.
Upvotes: 1