Python Jumpstart
Python Jumpstart
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 1
Why do I care about the
Python Commands version?
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 2
Python Syntax, Data Types, Functions, …
▪ Indentation defines scope
▪ Python code blocks do not have explicit statement scope delimiters
▪ Indentation amount is relative
▪ Data Types
▪ Statements
▪ Import
▪ Print
▪ Conditional
▪ Functions
▪ Looping
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 3
Python Data Types
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 4
Python Data Types - Examples
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 5
Python Scope and Conditions
In your IDE or terminal window type the following commands at the end of your
program and then run it to see the output:
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 11
Python Looping
for count in range(5) Loop from 0 to 4
for count in range(2,5) Loop from 2 to 4
for count in range(len(MyList)) Loop from 0 to end of the list
for fruit in basket Loops through a List, Tuple or Dictionary
while count < 5 Must increment count
while True Infinite loop. End with break statement
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 12
Looping with "for" in Python
1. Insert the "for" statement and indent
num = 1
all remaining lines. These form the
for count in range(3):
block of the "for" loop.
num = int(input("Input a number: "))
2. Run the program
if num < 1:
print ("I'm less than 1!")
print (Goodbye Cruel World!")
elif num == 1:
print ("I'm equal to 1!")
else:
print ("Value is: " + str(num))
print ("Value is: ", num)
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 13
Looping with "while" in Python
num = 1
#for count in range(3): 1. Comment out the "for" statement
while num > 0: 2. Insert the "while" statement
num = int(input("Input a number: ")) 3. Run the program
if num < 1: How has the behavior changed?
print ("I'm less than 1!")
print (Goodbye Cruel World!")
elif num == 1:
print ("I'm equal to 1!")
else:
print ("Value is: " + str(num))
print ("Value is: ", num)
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 14
Dictionaries in Python
• A dictionary is different than a list or a tuple. Each element in a dictionary
must contain a key followed by a value. This key value association is
typically referred to as name-value pairs. Dictionaries are defined by curly
braces {}.
• Here's a dictionary {"car":"corvette","age":7, "food":"pizza"} .The value in
a dictionary is accessed by its key. Dictionaries are sometimes
called maps or associative arrays
Add this to your code and run:
What is the result?
print("\nMy Dictionary Example:")
MyExample = {"Type":"MS250","Ports":48,"Name":"Switch1","Loc":"Building 5"}
print (len(MyExample), MyExample)
print (MyExample["Name"]," in ",MyExample["Loc"]," is a ",MyExample["Type"])
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 15
Parsing JSON with Python
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 16
What is JSON?
• JSON stands for Java Script Object Notation
• Consists of text-based name-value pairs making it simple for applications
to store and exchange data
• Designed to be lightweight, readable, and minimal, avoiding excessive
text which has sometimes been the complaint of XML (another text-
based protocol for exchanging and storing data)
• The structure and parsing of JSON is the same as Python dictionaries
and lists
• In JSON, data is set up in name value pairs just like a Python dictionary;
however, in JSON, dictionaries are referred to as objects
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 17
Concept : JSON
▪ JavaScript Object Notation (JSON) [
▪ A data-interchange text format {
▪ Really just "first_name": "Joe",
"last_name": "Montana"
▪ Collections of name/value pairs
},
▪ Object {} {
▪ Ordered list of values "first_name": "Jerry",
▪ Array [] "last_name": "Rice"
}
]
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 18
Practice with Dictionaries
1. Copy the following code
2. Run the program
Devices={"model1":"MR52","model2":"MR84","model3":"MR42"}
for model in Devices:
print("Device Model: " + Devices[model])
Sample Output:
Device Model MR52
Device Model MR84
Device Model MR42
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 19
Sending a REST API request
1. Copy the following code with a valid Dashboard API key (like your home lab's)
2. Run the program
import requests
import json
org_url = 'https://dashboard.meraki.com/api/v0/organizations'
json_output = json.loads(response.text)
myvar={"switches":{"fixed":["2900","3650","3850","9300","9500"]}}
print(myvar["switches"]["fixed"][0])
print("My list of access switches are:", end=" ")
for f in myvar["switches"]["fixed"]:
print(f, end=" ") © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 21
Python Functions – Defining Your Own
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 22
Python Functions Defined - Examples
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 23
Python Functions Defined - Calling
print ("I'm not a function")
def my_function():
print("Hey I'm a function!")
def brett(val):
for i in range(val):
print("I'm a function with args!")
my_function()
brett(5)
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 24
Thanks for Playing ☺
Content Credit: Cisco DevNet team, Paul Marsh, Meraki API team
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 25