os module:
Introduction :
os module in python will allow you to do all types of operating system based functionalities like creating a folder, deleting and stuffs like that. we can also access terminal level commands with os module.
why we need to do operating system based functionality in our python code?
Consider this scenario where we are going to write an automation script which will take backup and store it in a directory (which should be in the name of current date).normally we use “mkdir” in linux to create a folder via terminal now by using os module’s function we can make our python code to do that.








