Heim  >  Artikel  >  Backend-Entwicklung  >  python实现调用其他python脚本的方法

python实现调用其他python脚本的方法

WBOY
WBOYOriginal
2016-06-06 11:19:372248Durchsuche

本文实例讲述了python实现调用其他python脚本的方法,分享给大家供大家参考。具体方法如下:

该实例调用当前目录下的md5get.py脚本。代码如下:

import os 
import logging 
import subprocess 
 
log = logging.getLogger("Core.Analysis.Processing") 
 
INTERPRETER = "/usr/bin/python" 
 
 
if not os.path.exists(INTERPRETER): 
  log.error("Cannot find INTERPRETER at path \"%s\"." % INTERPRETER) 
   
processor = "md5get.py" 
 
pargs = [INTERPRETER, processor] 
pargs.extend(["--input=inputMd5s"]) 
subprocess.Popen(pargs) 

希望本文所述对大家的Python程序设计有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn