Heim  >  Artikel  >  Backend-Entwicklung  >  在win和Linux系统中python命令行运行的不同

在win和Linux系统中python命令行运行的不同

WBOY
WBOYOriginal
2016-07-22 08:56:271826Durchsuche

今天,在完成一个小的python习题,习题的主要内容是读取一个帮助模块,并保存到本地文件。

知道是用pydoc进行模块的读取,但是在windows系统下,调用os模块之后,结果总是为空。

核心语句:

helpfile = os.popen('pydoc %s' %module).read()

此语句在Linux下可以正常运行,结果正常。

后来发现,在Windows下,该修改为:

helpfile = os.popen('python -m pydoc %s' %module).read()

命令行运行,需要使用Windows的命令行语句。

以上就是本文的全部内容了,希望能对大家学习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