当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python zipfile.Path.joinpath用法及代码示例


用法:

Path.joinpath(*other)

返回一个包含每个 other 参数的新 Path 对象。以下是等价的:

>>> Path(...).joinpath('child').joinpath('grandchild')
>>> Path(...).joinpath('child', 'grandchild')
>>> Path(...) / 'child' / 'grandchild'

在 3.10 版中更改:在 3.10 之前,joinpath没有记录并且只接受一个参数。

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 zipfile.Path.joinpath。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。