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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:29:52+00:00 2026-05-26T04:29:52+00:00

So in playing around with getattr in my code I discovered the following: myVariable

  • 0

So in playing around with getattr in my code I discovered the following:

myVariable = foo.A.bar

works…but something like this:

B = "A"
myVariable = getattr(foo, B + ".bar")

returns an error that foo does not contain an attribute A.bar. Where am I going wrong? Thanks!

  • 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-26T04:29:53+00:00Added an answer on May 26, 2026 at 4:29 am

    Because there is no attribute A.bar on foo. Attribute bar is a part of the object pointed to by A, which is an attribute of foo. You need either

    getattr(foo.A, "bar")
    

    or

    getattr(getattr(foo, 'A'), 'bar')
    

    The generic code for accessing deep attributes is to split on the dot, and go until the last part is found (I’m writing from memory, not tested):

    def getattr_deep(start, attr):
        obj = start
        for part in attr.split('.'):
            obj = getattr(obj, part)
        return obj
    
    getattr_deep(foo, 'A.bar')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

While playing around with regexps in Scala I wrote something like this: scala> val
I'm just playing around with some code but it seemed to have the specific
Im playing around with TryParse() But lets say the parsing fails, then returns false,
Am playing around with the standard Wordpress search and am using this code in
After playing around with haskell a bit I stumbled over this function: Prelude Data.Maclaurin>
I'm playing around with LinqToSQL using an existing multi-lingual database, but I'm running into
iam playing around with OPEN CV from Intel with the associated PHP Extensions. Works
I'm playing around with writing a web app. In this case, I'm using scotty
While playing around with one-to-one associations in castle activerecord I stumbled upon the following
Just playing around with java trying to learn it etc. Here is my code

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.