site banner

Small-Scale Question Sunday for April 21, 2024

Do you have a dumb question that you're kind of embarrassed to ask in the main thread? Is there something you're just not sure about?

This is your opportunity to ask questions. No question too simple or too silly.

Culture war topics are accepted, and proposals for a better intro post are appreciated.

1
Jump in the discussion.

No email address required.

Does anybody like programming?

I have been hired as a sole and lead Python developer in a company. But my Python experience is mostly on Numpy, if anybody has some tips? It would be very appreciated!

  1. Use type annotations.
  2. Don't get clever. Python is incredibly flexible, and you should use a very small subset of what's available. See e.g. the Google Python style guide.
  3. Have good test coverage.
  4. Have good version control/dependency management.