Importer un système d'exploitation dans Python

#import os in python: a realized way.
import os
path= "C:\\Users\\88013\\Desktop\\New folder"

if os.path.exists(path):
    print("We got that information")
if os.path.isfile(path):
    print("This is a text file format")
elif os.path.isdir(path):
    print("This is a Folder")
else:
    print("Find the File in Hard-Disk")
YEASIN ARAFAT