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

  • Home
  • SEARCH
  • 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 6206061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:22:57+00:00 2026-05-24T05:22:57+00:00

is it possible to store a variable from a while loop to a function

  • 0

is it possible to store a variable from a while loop to a function and then call that same variable from the function at the end of the loop

for eg:during while loop, problem here is that when i try to retrieve the variable from store() it fails…as it needs arguments to be passed..

def store(a,b,c):
    x1 = a
    y1 = b
    z1 = c
    return (x1,y1,z1)

def main():
    while condition:
          x = .......
          y = .......
          z = .......
          ......
          ......
          store(x,y,z) #store to function...
          ......
          ......
          ......
          s1,s2,s3 = store()
          ......
          ......
          ......
  • 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-24T05:22:58+00:00Added an answer on May 24, 2026 at 5:22 am

    Hmmm, unless I am misunderstanding, this is a classic non-solution to a non-problem.

    Why not just use the language as it is?

    while condition:
    
       x = something
       y = else
       z = altogether
       ...
       save_state = (x,y,z)   ## this is just a python tuple.
       ...
       # do something else to x, y and z, I assume
       ...
       x, y, z = save_state
    

    Depending on the type of x, y and z you may have to be careful to store a copy into the tuple.

    (Also, your indentation is wrong, and there is no such thing as end in python.)

    Update: Ok, if I understand better, the question is just to be able to use the previous value the next time through. In the simplest case, there is no problem at all: the next time through a loop, the the value of x,y, and z are whatever they were at the end of the previous time through the loop (this is the way all programming languages work).

    But if you want to be explicit, try something like this:

     x_prev = some_starting_value
     x = some_starting_value
     while condition:
          x = something_funky(x_prev)
    
          .... other stuff ....
    
          x_prev = x
    

    (but again, note that you don’t need x_prev at all here: x=something_funky(x) will work.)

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

Sidebar

Related Questions

I want to call a function using a variable. Is that possible in C?
Is it possible to store different select value to the same variable? DECLARE @cout
Is it possible in Mustache to read variable from parent section while in child
Is it possible to store a type name as a C++ variable? For example,
Does it possible to execute php file and store its output into some variable?
Is it possible to store encrypted connection string so it can be used from
Is it possible to store passwords on the local system (Windows XP) that can
Is it possible to store the results of a call to exec sp_executesql in
Is it possible to store the credentials that I use to connect to my
I am trying to store a variable from my database into a JavaScript variable

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.