PhCharm - Stop and Rerun

Greetings -

New to PyCharm and I am encountering a notification window that states:

 Process 'main' Is Running
 'main' is not allowed to run in parallel.
 Would you like to stop running one?

Question I have is how do I run only one? Not sure what I did exactly to encounter the notification. Also, when I hit the blue button, “Stop and Rerun” the notification resurfaces when I ‘run’ the code again.

Thank you.

Jason[quote=“Jason_Negron, post:1, topic:3432, full:true”]
Greetings -

New to PyCharm and I am encountering a notification window that states:

 Process 'main' Is Running
 'main' is not allowed to run in parallel.
 Would you like to stop running one?

Question I have is how do I run only one? Not sure what I did exactly to encounter the notification. Also, when I hit the blue button, “Stop and Rerun” the notification resurfaces when I ‘run’ the code again.

Thank you.

Jason
[/quote]

Hi, the thing is when you use input() in your code and when you start it, the program waits for your move :smiley: Try this, instead of

myName = input("Jason Negron")

use this:

myName = input("Type your full name here: ")
print("This is what you entered: ", myName)

and then after you start click inside the bottom window and you will be able to type there :slight_smile: then press ENTER.
Untill you type there program will be running and waiting for your input, cause it is his job exactly :smiley:
Hope this works :slight_smile: