Is there a method for issuing command line instructions directly from the python shell?
Asked
Active
Viewed 76 times
0
-
1Check out these answers to a similar question: http://stackoverflow.com/questions/89228/calling-an-external-command-in-python. – Nikolai R Kristiansen Jun 19 '15 at 10:19
1 Answers
1
You can use os.system
-
import os
os.system('<command line instruction>')

Anand S Kumar
- 88,551
- 18
- 188
- 176