can we refer packge with out parent folder name in python code example
Example 1: How do I get the parent directory in Python?
from pathlib import Path
Path(Path.cwd()).parent
Example 2: how do i get parent directory python
from pathlib import Path
path = Path(Path.cwd())
print(path.parent)