call system command python if linux or windows code example
Example: python run a system command
import os
cmd = "git --version"
returned_value = os.system(cmd) # returns the exit code in unix
import os
cmd = "git --version"
returned_value = os.system(cmd) # returns the exit code in unix