Skip to content

Instantly share code, notes, and snippets.

@ispyhumanfly
Created November 19, 2019 14:16
Show Gist options
  • Save ispyhumanfly/16bbad4e64cf819340fa6290d1d6c5a8 to your computer and use it in GitHub Desktop.
Save ispyhumanfly/16bbad4e64cf819340fa6290d1d6c5a8 to your computer and use it in GitHub Desktop.
for reservation in response_2["Reservations"]:
for instance in reservation["Instances"]:
# This sample print will output entire Dictionary object
print(instance)
# This will print will output the value of the Dictionary key 'InstanceId'
print(instance["InstanceId"])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment