Understanding the basic concepts of the XML format and the content it contains will be important when dealing with APIs and writing scripts. I continue my series in studying for the Cisco DevNet …
DevNet Associate Challenge
For over a year I’ve been making excuses when it comes to learning how to code. In the beginning I had chosen Python as my coding language of choice. Now we have the DevNet Associate …
YAML Basics for DevNet
Taking a look at the Cisco DevNet Associate exam topics (DEVASC 200-901), one of the first objectives is to compare different data formats. Those data formats you should be able to compare are XML, …
Committing To Think Python
Think Python is a free book written by Allen B. Downey. It’s the second edition which covers Python 3. Think Python replaces his original book, How To Think Like a Computer Scientist: Learning …
Python Day 4: Dictionaries
Dictionaries Indexes for dictionaries are called keys. Keys are associated with a value called a key-value pair. A dictionary is unordered. Compared to a List, there is no index starting at …
Python Day 3: List Methods
The previous day went over the basics of the Python List. On this day I go a little further into List Methods. List Methods allow you to work with the items within a List. With methods such as …