Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created August 22, 2021 07:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatosmorina/279b1455061661cbb129b314310c88e0 to your computer and use it in GitHub Desktop.
Save fatosmorina/279b1455061661cbb129b314310c88e0 to your computer and use it in GitHub Desktop.
odd_values = [value for (key, value) in dictionary.items() if value % 2 == 1]
print(odd_values) # [1, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment