🎉 欢迎,我的Github主页.
清理Python缓存

清理Python缓存

import pathlib, shutil

for p in pathlib.Path(".").rglob("__pycache__"):
    shutil.rmtree(p)