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 7186399
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:37:23+00:00 2026-05-28T18:37:23+00:00

I want to keep astructure saved over iterations of a function, in order to

  • 0

I want to keep astructure saved over iterations of a function, in order to keep data to use it for later purpose.
There is a simple way to do it, in using a global variable.

The thing is, anyone could access the variable.
So, is there a way to create a variable accessing only by the function, but that would not be erased when running this function?

Ex :

mylist = []

def test():
    global mylist

    if mylist:
        my_list.append(1)

    other_stuff, using my_list

Is exactly what I want to do, but my_list could be accessed by anyone else.

(ok I know, the example is completely dumb)

Sorry for the formulation, but I could not come with something simpler

EDIT : Ok, so with so different (and all interesting) solutions. I’ll quickly explain the idea of what I want to do 🙂

Let’s imagine I want to calculate is a number is a prime. This is usually computationnaly coslty.

So I got a is_prime(value) function, returning False or True.

value can be any number, but there are chances (in my case) that value takes several times the same value (litteraly ^^).

In this case, I could use a (not to long ) list of primes I have already found to quickly check and save computations.
But my prime_list is no use in a function returning true/false.

So here is my question :).

Hope to clarify some minds (including me! ).

  • 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-28T18:37:24+00:00Added an answer on May 28, 2026 at 6:37 pm

    Here is a case where a list as the default value of a parameter can come in handy:

    def test(myList=[]):
    
        myList.append(1)
        other_stuff, using myList
    

    I leave the if myList off, since it will exist (it was created when test was defined). (Plus, if myList tests if the list is non-empty, not defined).

    myList, as a function parameter, is local to test. When test is defined, it is initialized to a list. The value of the list persists for the life of your program.

    Compare to the standard advice of

    def test(myList = None):
        if myList is None:
            myList = []
    

    which is necessary when you want a fresh empty list inside test at each call if no list is provided by the call.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to keep my website/s in version control (Subversion specifically) and use svn
I want to keep the class simple and not defined a constructor so i
I want to keep customers' order history. I am thinking of keeping names of
I have a wxListCtrl that i want to keep in synch with a data
I want to keep logs of some things that people do in my app,
I want to keep viewstate of a specific page in session but following code
I want to keep tabs on the number of concurrent users of my application.
I want to keep a cell selected, and only change when I select another
I want to keep SSH debug info separate (and logged) from other input. However,
I want to keep backup of my database and import it into different System?

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.