ZBrushCentral

How does FileExecute in zScript take input?

Currently zScript creates a pipeline via FileExecute and runs hython.

[VarSet,dllPath,"C:\Program Files\Maxon ZBrush 2023\ZStartup\ZPlugs64\MacroData\ZFileUtils64.dll"]
[VarSet,hython, "C:\Program Files\Side Effects Software\Houdini 20.0.547\bin\hython.exe"]
[VarSet,myPy,"D:\temp\hythonTest.py"]


[MemCreate,hython_App, 256, 0]
[MemWriteString,hython_App,hython,0]
[FileExecute,[Var,dllPath],"LaunchAppWithFile",#myPy,,hython_App]
[MemDelete,hython_App]

When I have the following code, the hython itself runs fine. Also, the python itself executed from the hython runs fine. What I’m wondering here is, what if I want to put some input data of string or int or float type in that hython and have it passed to python sys?