Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Pathlib iterdir (flat)

  • iterdir

  • Iterate over the things (file names, folder names, etc.) in a folder.

from pathlib import Path

folder = Path(".")

for item in folder.iterdir():
    print(item)