0

Is there a method for issuing command line instructions directly from the python shell?

optimist
  • 1,018
  • 13
  • 26

1 Answers1

1

You can use os.system -

import os
os.system('<command line instruction>')
Anand S Kumar
  • 88,551
  • 18
  • 188
  • 176