import os
basepath = os.getcwd() # 如果你想在当前路径下创建
# basepath = r"C:\\" #如果你想在特定路径下创建
d1 = input("d1:")
full1 = os.path.join(basepath, d1)
os.makedirs(full1, exist_ok=True)
d2 = input("d2:")
full2 = os.path.join(d1, d2)
os.makedirs(full2, exist_ok=True)