Create a Fractions Class that will add, subtract multiply and divide fractions.
Python has methods that perform all arithmetic operations: +, -, *, / etc.
After implementing these methods in the Fraction class, the Fraction class will be able to add, subtract, multiply, divide any two fractions. These method will return a Fraction
Example:
If the fractions are 2/ 3 and 1/6 then your program should produce the following fractions:
2/3 + 1/6 = 15/18
2/3 - 1/6 = 9/18
2/3 x 1/6 = 2/18
2/3 ÷ 1/6 = 12/3
Modifications :
Starter Code
.