I searched on stack overflow but I did'nt find a correct answer.
I use subprocess popen to call and run an entire python script and it works fine, like that :
subprocess.Popen(['python3', '/home/pc/Dossier/Dossier2/Nom.py'], )
But in my system I want to modify a variable in the script Nom.py when I call it with subprocess popen. I heard about inputs parameters for subprcess popen. Do you think that is possible and do you have any examples ?
Thanks for your future answer