Skip to content

Instantly share code, notes, and snippets.

@GroomedGorilla
Created April 18, 2023 17:03
Show Gist options
  • Save GroomedGorilla/625ab2482ce4dd1c14a3aa9306603408 to your computer and use it in GitHub Desktop.
Save GroomedGorilla/625ab2482ce4dd1c14a3aa9306603408 to your computer and use it in GitHub Desktop.
Quick and Dirty Difference between dicts
for key, value in object_1.items():
if object_2[key] != value:
outliers[key] = {"object_1" : object_2[key], "object_2": value}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment