import os
path = "已有文件夹路径"
title = "新文件夹名称"
new_path = os.path.join(path, title)
if not os.path.isdir(new_path):
    os.makedirs(new_path)