用法:
Path.joinpath(*other)
返回一个包含每个
other
参数的新 Path 对象。以下是等价的:>>> Path(...).joinpath('child').joinpath('grandchild') >>> Path(...).joinpath('child', 'grandchild') >>> Path(...) / 'child' / 'grandchild'
在 3.10 版中更改:在 3.10 之前,
joinpath
没有记录并且只接受一个参数。
相关用法
- Python zipfile.PyZipFile.writepy用法及代码示例
- Python zipfile.ZipFile.open用法及代码示例
- Python zip()用法及代码示例
- Python zip用法及代码示例
- Python string zfill()用法及代码示例
- Python zlib.compress(s)用法及代码示例
- Python zlib.decompress(s)用法及代码示例
- Python zlib.adler32()用法及代码示例
- Python numpy matrix zeros()用法及代码示例
- Python zlib.crc32()用法及代码示例
- Python zoneinfo.ZoneInfo用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python numpy.less()用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python Sympy Permutation.list()用法及代码示例
- Python dask.dataframe.Series.apply用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 zipfile.Path.joinpath。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。