I’m wondering how many python interpreter would be executed for distinct python apps?
Say I have 6 different python apps up and running, so does that mean there are 6 different python interpreters are running for each of them?
I’m wondering how many python interpreter would be executed for distinct python apps? Say
Share
when executing a python script, you have 1 interpreter running per process executing.