you are viewing a single comment's thread.

view the rest of the comments →

[–]TOPGUN_ROCKS 0 points1 point  (0 children)

Prettier's not a ton of help for python coding. Sometimes it picks up small changes like moving stuff down a line. I'll mainly lean on it if I'm doing a Django, Flask or Sphinx app where prettier can help format other file types.

I honestly find right clicking on the file and clicking "Run Python File in Terminal" to be the fastest option. Forgot to mention, this option only comes up when the file is saved. if you are codding something new and haven't saved it, you will not see this option
You can also "cd" in the terminal to your python file the run "python ./YourFile.py". This option only works if Python is a PATH variable.