Working With The Built-in OS Module in Python

How to use the built-in os module in Python and interact with the operating system.

Fahadul Shadhin
Python in Plain English
5 min readFeb 23, 2021

--

Python os module
Image by author

The os module in Python allows us to interact with the operating system. We can do operations like navigating the file system, creating or deleting files, finding file information, renaming files and many more using the os module. In this article I…

--

--