• 7 December 2024

Structured data with in Netmiko

Netmiko is very powerfull Python package. There are a lot of contributions. It cannot to be considered that it cannot support structured data. Sometimes manual parsing enough. Also when we get the command results as XML or JSON format, we have more possibilities. But what if we couldn’t get the the result as XML or…

Read More

Some Python useful samples

args usage multiple return & one line if lambda function & one line if eval and exec usage pip reference

Read More

Python Lists, Dictionaries, Tuples & Sets

Extending a list or concatenation of lists in other words. Extend function adds the given list at the end of the first list. Also, we can use insert function to add an item to a specific index of a list. List pop, append, remove, clear & sorted usage.. When we use pop method of a…

Read More

Python Built-in Functions

Phython has a number of built-in functions, we use in every .py although we are not aware of it. That is the full list of built-in functions. We already know some of them. Now I will try some I may be need to use later. Let’s have a start with help function. As you see,…

Read More