汇总一些自己遇到的python的小技巧。
###python内嵌shell函数 使用 subpro module 库
from subprocess import call call(["ls","-l"])
之后补上。