Some could argue that simply using print() statements to trace the code is not really debugging. However, sometimes that’s all you need. Let’s start with the simple example below: > 3 5 Now let’s include the variable names to improve debugging. > a: 3, b: 5 What if…