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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:57:58+00:00 2026-05-27T09:57:58+00:00

I am trying to traverse each ‘node?’ of a JSON objet in python. I

  • 0

I am trying to traverse each ‘node?’ of a JSON objet in python. I am trying to implement a recursive function like

def function(data):
         for element in data:
                --- do something----
                if (some condition):
                        function(element)

what I want to know is how can I find if the element in question is another object or just a string. That is, what should I write instead of ‘some condition’ in my above code. Like when I travese an XML , I check if it has any children using getchildren() and if it does, I recursively call the function again…..

  • 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-27T09:57:59+00:00Added an answer on May 27, 2026 at 9:57 am

    A good pythonic way to do it could be something like this :

    def function(data):
       try:
          for element in data:
             --- do something----
             function(element)
       except TypeError:
          pass
    

    Do the stuff and let python raise an exception if you try to iterate on something that is not iterable 😉

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

Sidebar

Related Questions

I'm trying to write some Python code that will traverse each directory in the
I've been trying to think of a way to traverse a hierarchical structure, like
I'm trying to traverse an XML document and select certain node attributes. The XML
I'm trying to traverse a ul that has been appended to before traversing like
I'm trying to write a function that will traverse the file directory and give
I am trying to search through a binary search tree and store each node
I'm trying to traverse through all the subdirectories of the current directory in Perl,
i am trying to traverse a given directory and create a list of files
Trying to get my css / C# functions to look like this: body {
I'm trying to traverse an AJAX response, which contains a remote web page (an

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.