Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Function of adding two lists in Python

whenever I run following code of adding two lists in python below mentioned error appears

    def add_lists(L1, L2):
        R = []
        for i in range(0, len(L1)):
            R.append(L1[i]+L2[i])
        return R

    L2 = [3, 3, 3, 3]
    L1 = [1, 2, 3, 4]
    add_lists(L1, L2)
    print("Resultant list of: ", str(L1), '& ' + str(L2), 'is', R)

this code yields NameError: name ‘R’ is not defined

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

The variable R is local to your function and so is not accessible to your print statement. (Generally, this is good! It makes the function self-contained and avoids dependencies on what global variables may or may not exist.)

To print the result of the function, assign the result to an in-scope variable and use that.

def add_lists(L1, L2):
    R = []
    for i in range(0, len(L1)):
        R.append(L1[i]+L2[i])
    return R

L2 = [3, 3, 3, 3]
L1 = [1, 2, 3, 4]
res = add_lists(L1, L2)  # assigns the result of the function call to a variable we can access
print("Resultant list of: ", str(L1), '& ' + str(L2), 'is', res)
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading