A List of Python Learning Resources

Library Computer and Bookshelf

This post is a short list of my recommended Python learning resources. I received an email from someone who found this blog and my GitHub repo and asked about the right place to go to start learning Python. The list of resources in this post comes from the email I …

more ...




Statistics in Python using the statistics module

In this post, we'll look at a couple of statistics functions in Python. These statistics functions are part of the Python Standard Library in the statistics module. The four functions we'll use in this post are common in statistics:

  • mean - average value
  • median - middle value
  • mode - most often value
  • standard …
more ...