You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you develop through IDLE, the name of the file doesn't matter that much, but when you run a program that you have downloaded through the command line it is not very ergonomic to type in filenames when those filenames contain spaces.
python My\ Thing.py
PEP8 (the de-facto standard for python) asks that you name files and modules as described here
So instead of My Thing.py you should have my_thing.py
The text was updated successfully, but these errors were encountered:
When you develop through IDLE, the name of the file doesn't matter that much, but when you run a program that you have downloaded through the command line it is not very ergonomic to type in filenames when those filenames contain spaces.
python My\ Thing.py
PEP8 (the de-facto standard for python) asks that you name files and modules as described here
So instead of
My Thing.py
you should havemy_thing.py
The text was updated successfully, but these errors were encountered: