0

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

optimist
  • 1,008
  • 13
  • 25

1 Answers1

1

You can use os.system -

import os
os.system('<command line instruction>')
Anand S Kumar
  • 82,977
  • 18
  • 174
  • 164