标签:mkdir 地址 需要 创建 res imp new open 内存地址
# Auther: Aaron Fan
import os
cmd_res1 = os.system("dir") #执行命令,但是不保存结果
cmd_res2 = os.popen("dir").read() #执行命令,并保存结果。os.popen()保存的只是一个内存地址,需要通过.read()把这些内容
#从内容地址中读出来
os.mkdir("new_dir") #在当前目录中创建一个名为new_dir的目录
标签:mkdir 地址 需要 创建 res imp new open 内存地址
原文地址:http://www.cnblogs.com/AaronFan/p/6057271.html