Skip to content

Instantly share code, notes, and snippets.

@salluzziluca
Last active May 10, 2022 22:36
Show Gist options
  • Save salluzziluca/81e47250e548f35b4a4b2db3802384e4 to your computer and use it in GitHub Desktop.
Save salluzziluca/81e47250e548f35b4a4b2db3802384e4 to your computer and use it in GitHub Desktop.
add item to dict (value as a number), if key already in dict-> sum.
def cargar(diccionario, kkey, value):
if key in diccionario.keys():
diccionario[kkey]+=value
else:
diccionario[kkey]=value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment