![Django 2 Web Development Cookbook](https://wfqqreader-1252317822.image.myqcloud.com/cover/229/36699229/b_36699229.jpg)
上QQ阅读APP看书,第一时间看更新
Deleting Python-compiled files
When you run your project for the first time, Python compiles all of your *.py code in bytecode-compiled files, *.pyc, which are used later for execution.
Normally, when you change the *.py files, *.pyc is recompiled; however, sometimes when switching branches or moving the directories, you need to clean up the compiled files manually.