This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: json data iteration through loop in python
Type: Stage:
Components: Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: satyanani40, steven.daprano
Priority: normal Keywords:

Created on 2014-12-13 04:57 by satyanani40, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg232594 - (view) Author: vegeshna satyanarayana raju (satyanani40) Date: 2014-12-13 04:59
I have json data in following format
{"message":["frappe","websocerp","erpnext"]}

I want each name (frappe, websocerp, erpnext) in three iteration

after that i can use as 
frappe.something.get_data()
websocerp.something.get_data()
erpnext.something.get_data()
msg232595 - (view) Author: Steven D'Aprano (steven.daprano) * (Python committer) Date: 2014-12-13 05:05
This is a bug tracker for issues in the Python language and standard library, not a service for learning how to program using Python.

If you have an actual bug to report, you should give more detail including the actual code you used, the result you expected, and the result you actually got.

Otherwise you should try asking your question on the python-list@python.org mailing list, the comp.lang.python newsgroup, /r/python on Reddit, StackOverflow, or one of the many other public forums for discussing Python programming issues.
History
Date User Action Args
2022-04-11 14:58:11adminsetgithub: 67234
2014-12-13 05:05:30steven.dapranosetstatus: open -> closed

nosy: + steven.daprano
messages: + msg232595

resolution: not a bug
2014-12-13 04:59:19satyanani40setmessages: + msg232594
2014-12-13 04:57:15satyanani40create