首页 > 代码库 > Python标准库os
Python标准库os
如果你希望自己的程序能够与平台无关的话,这个模块至关重要。
os.name #‘nt‘ for windows, ‘posix‘ for linux/unixos.getcwd() #get current work directory,即Python脚本工作的目录路径os.getenv() #get the environment variablesos.setenv() #set the ...os.listdir(mdir) #list all files and directories name under mdiros.remove(mfile) #delete mfileos.system() #run shell commandos.linesep #行终止符, ‘\r\n‘ for windows, ‘\n‘ for linux, ‘\r‘ for macos.path.split(mpath) #return (directory,filename)os.path.isfile(mstr)os.path.isdir(mstr)os.path.existe(mdir) # if the mdir exist
Python标准库os
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。