Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6336585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T19:05:08+00:00 2026-05-24T19:05:08+00:00

I need to write a function which returns an list of sum functions, adding

  • 0

I need to write a function which returns an list of sum functions, adding an input number to some binded value. This is what i did:

def addition_range(start, end):
    if start >= end: return None

    #res = ( (lambda x: x + i) for i in range(start, end) ) #1
    res = [ (lambda x: x + i) for i in range(start, end) ] #2

    return res

for i in addition_range(0, 5): print( i(2) )

The output should be like: 2,3,4,5,6 but it’s 6,6,6,6,6

The problem is in “i” variable, when i call the functions, they use actual value of i (4), not value used during generation of the list. The problem could be simply solved by using (#1) instead (#2), but i’m interested is there a solution for (#2)? I tried

res = [ (lambda x: x + copy.deepcopy(i)) for i in range(start, end) ]

but it doesn’t help.

Thank you.

WinXP + Python 3.2

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T19:05:09+00:00Added an answer on May 24, 2026 at 7:05 pm

    The easiest way to solve this is by adding a dummy parameter:

    def addition_range(start, end):
        res = [(lambda x, i=i: x + i) for i in range(start, end)]
        return res or None
    

    The dummy parameter is evaluated at the time the lambda is defined, whereas your version evaluates i only when the lambda is called.

    Side note: I added the or None part only to simulate the exact behaviour of your implementation. It would probably be better to return an empty list instead of None:

    def addition_range(start, end):
        return [(lambda x, i=i: x + i) for i in range(start, end)]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i need to write a function which calculates how many elements on list with
Possible Duplicate: Searching through list I need to write a function 'once' which, given
I need to write a function that takes 4 bytes as input, performs a
I need to write a delegate function that can 'wrap' some while/try/catch code around
I need to write a non-recursive version of the function sum-squares and Use a
Lets say I need to write several functions processing some data. These functions are
Apologies if this has been asked before. I have some data which I need
I'm new to erlang. I wonder how to write a function which returns the
I need a function which takes an arbitrary number of arguments (All of the
I need to write a function that is passed an instance of a CharField.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.