본문 바로가기

카테고리 없음

Colab (코랩) System(시스템) Command 실행

파일 실행 할 때, 

  • import os
  • result = os.system('python test.py')

 

파일 실행 후 결과(라인 출력) 받아서 확인,

 

  • import subprocess
  • batcmd = "python test.py"
  • result = subprocess.check_output(batcmd, shell = True)
  • print(result.decode('utf-8'))