如果目录"d:\python"不存在,则创建该目录,请完善程序。
import os
if not ________("d:\python"):
os.mkdir("d:\python")
出自:国家开放大学Python程序设计