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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:49:22+00:00 2026-05-11T20:49:22+00:00

Why can’t I perform an action like the following: class Test(object): def __init__(self): self

  • 0

Why can’t I perform an action like the following:

class Test(object):
    def __init__(self):
        self = 5

t = Test()
print t

I would expect it to print 5 since we’re overwriting the instance with it, but instead it doesn’t do anything at all. Doesn’t even throw an error. Just ignores the assignment.

I understand that there would be hardly any situations where one would want to do that, but it still seems odd that you can’t.

Update: I now understand why it doesn’t work, but I’d still like to know if there is any way of replacing an instance from within the instance.

  • 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-11T20:49:23+00:00Added an answer on May 11, 2026 at 8:49 pm

    Any simple assignment to any argument of any function behaves exactly the same way in Python: binds that name to a different value, and does nothing else whatsoever. “No special case is special enough to break the rules”, as the Zen of Python says!-)

    So, far from it being odd (that simply=assigning to a specific argument in a specific function has no externally visible effect whatsoever), it would be utterly astonishing if this specific case worked in any other way, just because of the names of the function and argument in question.

    Should you ever want to make a class that constructs an object of a different type than itself, such behavior is of course quite possible — but it’s obtained by overriding the special method __new__, not __init__:

    class Test(object):
        def __new__(cls):
            return 5
    
    t = Test()
    print t
    

    This does emit 5. The __new__ / __init__ behavior in Python is an example of the “two-step construction” design pattern: the “constructor” proper is __new__ (it builds and returns a (normally uninitialized) object (normally a new one of the type/class in question); __init__ is the “initializer” which properly initializes the new object.

    This allows, for example, the construction of objects that are immutable once constructed: in this case everything must be done in __new__, before the immutable object is constructed, since, given that the object is immutable, __init__ cannot mutate it in order to initialize it.

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

Sidebar

Ask A Question

Stats

  • Questions 139k
  • Answers 139k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It's the '\\' before the '/'. Apparently you need 4… May 12, 2026 at 7:47 am
  • Editorial Team
    Editorial Team added an answer http://docs.jquery.com/Selectors Those are just the built in ones, though. You… May 12, 2026 at 7:47 am
  • Editorial Team
    Editorial Team added an answer If the dropdowns are really pivot page fields, then you… May 12, 2026 at 7:47 am

Related Questions

Why can't you do this and is there are work around? You get this
Why can I not see an option for copying database objects when I right
Why can't I pass the table name to a prepared PDO statement? $stmt =
Why can't I create a class in VB.NET that inherits System.IO.Directory ? According to
Why can't Delphi variants hold objects? More importantly, what's the reason behind this limitation?

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.