Tworzenie nowego folderu w Pythonie

newpath = r'C:\Program Files\arbitrary' 
if not os.path.exists(newpath):
    os.makedirs(newpath)
Tired Tern