脚本清理Python缓存清理Python缓存import pathlib, shutil for p in pathlib.Path(".").rglob("__pycache__"): shutil.rmtree(p)Golang构建模板