Cisco

CCNA DevNet Study Guide – Describe parsing of common data format (XML, JSON, YAML) to Python data structures

This is the second post in a series about the new CCNA DevNet certification (Previous Post Here). In this post, we will look at how to manage in Python the three formats that we previously discussed. Example of XML parsing in Python from __future__ import print_function import xml.etree.ElementTree as ET def main(): # create element… Continue reading CCNA DevNet Study Guide – Describe parsing of common data format (XML, JSON, YAML) to Python data structures