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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:53:41+00:00 2026-06-17T23:53:41+00:00

How or can I do the following? Please note that while I declare b_class,

  • 0

How or can I do the following? Please note that while I declare b_class, I don’t always directly instantiate b_class but is instantiated by a library.

class a_class:
  def some_method(self):
    """
    get the class instance of b_class in which a_class is instantiated
    using that instance, get var1
    perform some action based on var1
    """

class b_class:
  var1 = "init by the constructor or a method"
  a_inst = a_class()
  """
  other attributes
  """
  • 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-06-17T23:53:43+00:00Added an answer on June 17, 2026 at 11:53 pm

    You can’t, not without passing a reference to the instance of b_class when you call some_method or when you create your a_class instance.

    You could store references to that a_class instance anywhere, and because of that, you cannot, in Python, know from within the instance method where it has been assigned.

    So, do this:

    class a_class:
      def __init__(self, parent):
        self.parent = parent
    
      def some_method(self):
        self.parent.var1
    
    class b_class:
      def __init__(self):
          self.var1 = "init by the constructor or a method"
          self.a_inst = a_class(self)
    

    Now instances of a_class ‘know’ about their parent, and can reference them via the self.parent instance variable.

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

Sidebar

Related Questions

Can you please list references for articles that demonstrates the following two, using LINQ
The following code works perfectly in non-IE browsers. Please note that these first three
Can anyone help me in the following question please? Define a macro which has
Can someone please tell me how I can implement the following line of pseudo-code.
we are using framework 3.5 please let me know how can I achieve following
Can anyone please decode the following nested IIF to a CASE statement in SQL..
Can someone please explain the following How was the first JDK release unit Tested?
Can anyone please explain why the following code behaving strangely: public class UserInputTest {
Can anyone please explain to me why the following two queries yield different results?
Can you please point out what I am doing wrong in following statement? $db

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.