python apply function to dictionary values code example
Example: python apply function to dictionary values
# credit to Stack Overflow user in source link
# f is a Python - defined function
d2 = {k: f(v) for k, v in d1.items()}
# credit to Stack Overflow user in source link
# f is a Python - defined function
d2 = {k: f(v) for k, v in d1.items()}