python os和os.path模块的区别

看到有importos和importos.path不知道有什么区别,好像只需os就可以了,os.path导不导入好像都没关系。... 看到有import os和import os.path不知道有什么区别,好像只需os就可以了,os.path导不导入好像都没关系。 展开
 我来答
macru
推荐于2018-03-13 · TA获得超过172个赞
知道小有建树答主
回答量:250
采纳率:0%
帮助的人:184万
展开全部
os 包括os.path
import os 之后要 os.path 来调用
from os import path 后 直接用path来调用就可以了
未来是幸福的
2011-06-15
知道答主
回答量:48
采纳率:0%
帮助的人:14.1万
展开全部
请参考请文档:
os doc:
This exports:
- all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc.
- os.path is one of the modules posixpath, or ntpath
- os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos'
- os.curdir is a string representing the current directory ('.' or ':')
- os.pardir is a string representing the parent directory ('..' or '::')
- os.sep is the (or a most common) pathname separator ('/' or ':' or '\\')
- os.extsep is the extension separator ('.' or '/')
- os.altsep is the alternate pathname separator (None or '/')
- os.pathsep is the component separator used in $PATH etc
- os.linesep is the line separator in text files ('\r' or '\n' or '\r\n')
- os.defpath is the default search path for executables
- os.devnull is the file path of the null device ('/dev/null', etc.)

Programs that import and use 'os' stand a better chance of being
portable between different platforms. Of course, they must then
only use functions that are defined by all platforms (e.g., unlink
and opendir), and leave all pathname manipulation to os.path
(e.g., split and join).

path 的文档:

Common pathname manipulations, WindowsNT/95 version.

Instead of importing this module directly, import os and refer to this
module as os.path.

如果想有差别你可以像下面这样导入,就不行使用os引用path,直接使用path即可
from os import path
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2011-06-15
展开全部
os包括了os.path
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式