w3resource

Python: Run an operating system command using the os module

Python Operating System Services: Exercise-17 with Solution

Write a Python program to run an operating system command using the OS module.

Sample Solution:

Python Code :

import os
if os.name == "nt":
   command = "dir"
else:
   command = "ls -l"
os.system(command)

Sample Output:

total 4
-rw-rw-rw- 1 root root 99 Jan 18 10:50 main.py

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to write a string to a buffer and retrieve the value written, at the end discard buffer memory.
Next: Write a Python program to start a new process replacing the current process.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.