Python的一些模块的使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的一些模块的使用相关的知识,希望对你有一定的参考价值。

sys模块:
sys.path #查看环境变量
sys.argv(1) #代表第一个参数

os模块:
os.system的结果只是命令执行结果的返回值
os.sysytem("df -h") #运行系统命令

os.popen就可以读出执行的内容,popen返回的是file read的对象,对其进行读取使用read()
import os
b = os.popen("dir")
print(b..read()

import os
b = os.popen("dir").read()
print(b)










以上是关于Python的一些模块的使用的主要内容,如果未能解决你的问题,请参考以下文章

Python 模块安装的一些问题

python os,sys模块的使用

Python 常用方法和模块的使用

Python模块-requests模块使用

python模块selenium使用

Python爬虫基础讲解(十七):threading模块的使用