I have a problem with the following code:
callBash.py:
import subprocess print \"start\" subprocess.call(\"sleep.sh\") print \"end\"
If chmod not working then you also try
import os os.system('sh script.sh') #you can also use bash instead of sh
test by me thanks