Skip to content
Advertisement

I have to make a function which adds the fractions

I am kind of new to python lists

JavaScript

the desired result should be like this

JavaScript

error: list index out of range actually, I have to go through all lists in a 2d list and first divide the first element of the list with the second and then add it to the fraction of another lists

Advertisement

Answer

Your current code implementation has several problems:

  1. You haven’t initialized ss to 0
  2. You don’t need to increment i inside the loop again. range(len(lst) does this for internally.
  3. You don’t need to round at each iteration if you want the output to be 11. Use round only while returning the output.
  4. Additionally, it is not clear why you are adding the fractions twice.

The correct implementation would be:

JavaScript

As suggested by others, you can modify the function to directly iterate over elements and not index.

JavaScript
Advertisement