Skip to content

Mathspp Blog

A blog dedicated to mathematics and programming!

  • By Rodrigo Girão Serrão
  • Based in Portugal
  • Roughly six posts per week
  • First post on

Posts per month

Data for this chart is available in the table below
Posts per month
Month starting Posts
Jul 2022 4
Aug 2022 1
Sep 2022 3
Oct 2022 0
Nov 2022 1
Dec 2022 1
Jan 2023 6
Feb 2023 2
Mar 2023 8
Apr 2023 5
May 2023 4
Jun 2023 4
Jul 2023 12
Aug 2023 7
Sep 2023 6
Oct 2023 4
Nov 2023 22

Any gaps could be due to errors when fetching the blog’s feed.

Most recent posts

Manipulate Boolean values with conditions
In this article I explore a common code smell related to conditionals and Boolean values and show how to fix it. Manipulate Boolean values with conditions The code smell with return Consider the function is_even …
On , 500 words
divmod for unit conversions
This article shows how to use the Python built-in divmod for unit conversions. divmod for unit conversions The built-in divmod is the built-in that tells me that 45813 seconds is the same as 12 hours, …
On , 501 words
What is *args and how do you use it?
This article explains what *args means in Python and how to use it in your own functions. What is *args and how do you use it? You probably know the built-in function max. What does …
On , 505 words