Format python code #
# install autopep8
pip3 install autopep8
# format code and overwriting the original code
autopep8 --in-place --aggressive --aggressive test.py
# See the formatting effect directly, without overwriting the original code
autopep8 --aggressive --aggressive test.py