import subprocess
result = subprocess.call('"C:\\Users\\user\\Desktop\\Install Exe\\download.exe" /S norestart ', shell=True)
print(result)
This is something hardcode in the command, I want to pass this path in the variable and want variable instead of the path
Can we do this thing?