I have opened an exe in python using this:
import subprocess
subprocess.call(["E:\ApkTool.exe"])
this executed the application in python. the application has its own menu which requires 1-7 digit input. i want to give this input to application from python.
My inputs are:
first input : 2
second input : 1
last input : y
please guide me how i can do it using python?