Hello,
I want to assign the output of a command i run using os.system to a variable and prevent it from being output to the screen But, in the below code,the output is sent to the screen and the value printed for var is 0,which i guess signifies whether the command ran successfully or not. Any way to assign the command output to the variable and also stop it from being displayed on the screen ?
var = os.system("cat /etc/services")
print var #Prints 0
Please help Thank You