python clear cache code example
Example 1: python clear console
import sys, os
os.system('cls')
Example 2: clear all python cache
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
import sys, os
os.system('cls')
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf