Tips
Tip. Use a general-purpose editor such as VS Code.
Tip. Use a formatter. Black is the standard for Python. It can be installed as a package for VS Code. Furthermore, configure your editor to format on save.
Tip. Use a linter for Python. Flake8 for VS Code is good.
Tip. Use a good Python-language-support extension in your editor. Pylance for VS Code is good.
Tip. Use a spell checker. CSpell for VS Code is good.
Tip. Read PEP8 for style guidelines.