python标准库模块-os
2018-01-29 本文已影响2人
廖马儿
作用:与系统打交道。
比如调用系统的shell。
模块名最好不要用中文。
eg:
import os
cmd_res = os.popen("ls").read()
print (cmd_res)
1)创建目录
os.mkdir("new_dir")
运行之后,出现。
![](https://img.haomeiwen.com/i1197462/f172c2c6d76ec0ac.png)
作用:与系统打交道。
比如调用系统的shell。
模块名最好不要用中文。
eg:
import os
cmd_res = os.popen("ls").read()
print (cmd_res)
1)创建目录
os.mkdir("new_dir")
运行之后,出现。