it seems that I cannot change the global variable in Python when using the function called from pprocess. Here is my example:
import pprocess import time numbers=[0,0,0,0,0,0,0,0,0,0]
"numbers" is just a list of zeros, and for demonstration, I am trying to set each element of the list to the current system time. When called using pprocess, this will not work, but when I use a simple loop to call a function, the global variable changes.
I spent some time reading global variables and sincerely hope this is not a trivial problem. Can someone explain to me what is going on?
Thank you very much,
Enno
source share