0

Python では、コマンドが変数にテキストとして保存されている間に、シェル コマンドを実行することは可能ですか? 例えば:

  self.command_editor = QTextEditor()
  self.command_editor.append("echo command")
  cmd = str(self.command_editor.toPlainText())
  call(cmd)

このコードは動作しません!

4

1 に答える 1

1

これは正しい答えです:

  self.command_editor = QTextEditor()
  self.command_editor.append("echo command")
  cmd = str(self.command_editor.toPlainText())
  call(cmd, shell = True) #the mistake was here
于 2013-09-29T16:58:53.633 に答える