Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 201 Bytes

File metadata and controls

13 lines (10 loc) · 201 Bytes

path Module

Path helpers.

Functions

  • join(parts [str]) -> str: Joins path segments with the platform separator.

Example

load path
p = path.join(["a", "b", "c.txt"])
out(p)