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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:52:03+00:00 2026-05-28T13:52:03+00:00

AFAIK, Python evaluates the defaults of a function only once, at declaration time. So

  • 0

AFAIK, Python evaluates the defaults of a function only once, at declaration time. So calling the following function printRandom

import random
def printRandom(randomNumber = random.randint(0, 10)):
    print randomNumber

will print the same number each time called without arguments. Is there a way to force reevaluation of the default randomNumber at each function call without doing it manually? Below is what I mean by “manually”:

import random
def printRandom(randomNumber):
    if not randomNumber:
         randomNumber = random.randint(0, 10)
    print randomNumber
  • 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-28T13:52:04+00:00Added an answer on May 28, 2026 at 1:52 pm

    No. The default arguments are set when they are executed, which is when the function is defined. If you wanted them to be re-executed, you would need to re-define the function.

    The standard idiom, and the one you should use, is

    import random
    def print_random(random_number=None):
        if random_number is None:
            random_number = 4 # chosen by fair dice roll.
                              # guaranteed to be random.
        print random_number
    

    Note the use of None (a singleton) and the is test for object identity. You shouldn’t use if not random_number since there are many values which evaluate to boolean false — in particular, 0.

    There are plenty of other ways you could do this, but there’s no reason not to follow the convention.

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

Sidebar

Related Questions

My python code is calling a C function in a native library (also written
AFAIK, extern keyword should be used for declaration and no value can be associated
I'm looking for a simple process-based parallel map for python, that is, a function
I have a Python extension to the Nautilus file browser (AFAIK this runs exclusively
AFAIK, there is only one difference: key_id must be int and key_name must be
AFAIK, the Asp.net Web Pages model only supports a single form post per page.
AFAIK SQLite returns unicode objects for TEXT in Python. Is it possible to get
I'm having a hard time getting what I want out of the python subprocess
AFAIK one of the objectives of Stack Overflow is to make sure anyone can
AFAIK, Currency type in Delphi Win32 depends on the processor floating point precision. Because

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.