ID EN
Pathlib

parents

Python 3.11 🇮🇩 Bahasa Indonesia

Urutan yang tidak dapat diubah yang menyediakan akses ke nenek moyang logis dari jalur tersebut:

Syntax

PYTHON
PurePath.parents

Contoh

Example 1
PYTHON
>>> p = PureWindowsPath('c:/foo/bar/setup.py')
>>> p.parents[0]
PureWindowsPath('c:/foo/bar')
>>> p.parents[1]
PureWindowsPath('c:/foo')
>>> p.parents[2]
PureWindowsPath('c:/')

See Also

slices