Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
You very likely have a pathlib Path (or PurePath) object there. pathlib overrides the division operator to perform platform-aware path appends. >>> import pathlib >>> pathlib.Pa...
Answer
#2: Post edited
You very likely have a [`pathlib`](https://docs.python.org/3/library/pathlib.html) `Path` object there. `pathlib` overrides the division operator to perform platform-aware path appends.- ```py
- >>> import pathlib
- >>> pathlib.Path('/foo') / 'bar'
- PosixPath('/foo/bar')
- ```
- You very likely have a [`pathlib`](https://docs.python.org/3/library/pathlib.html) `Path` (or `PurePath`) object there. `pathlib` overrides the division operator to perform platform-aware path appends.
- ```py
- >>> import pathlib
- >>> pathlib.Path('/foo') / 'bar'
- PosixPath('/foo/bar')
- ```