作用:与系统打交道。
比如调用系统的shell。
模块名最好不要用中文。
eg:
import os
cmd_res = os.popen("ls").read()
print (cmd_res)
1)创建目录
os.mkdir("new_dir")
运行之后,出现。
图片.png作用:与系统打交道。
比如调用系统的shell。
模块名最好不要用中文。
eg:
import os
cmd_res = os.popen("ls").read()
print (cmd_res)
1)创建目录
os.mkdir("new_dir")
运行之后,出现。
图片.png本文标题:python标准库模块-os
本文链接:https://www.haomeiwen.com/subject/ranxlxtx.html
网友评论