#To define a particular parameter, replace the 'parameterName' inside itsm.getParameter('parameterName') with that parameter's name
from subprocess import Popen,PIPE
obj=Popen("df -h",stdin=PIPE,stdout=PIPE,shell=True)
print obj.communicate()[0]