5 导入sys os 包

import sys
import os

print(sys.path)
print(os.popen("dir").read())
os.mkdir("log")

你可能感兴趣的:(Python)