Skip to content
Advertisement

GCD implementation of fraction addition not working properly

I am following the Runestone Academy Python3 course and tried to implement ‘addition’ feature for fractions using Class but I am getting error.

When I am not using GCD implementation, the code is running fine

Here is my code:

JavaScript

This is the error I am getting:

JavaScript

I also tried with this variation but same error:

JavaScript

Advertisement

Answer

The gcd method should not logically be part of the Fraction class. Indeed, you can call the gcd method with any two numbers, they do not need to be the numerator and denominator of a fraction. Therefore I would move the gcd function outside of the class.

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement