conver todas las teclas de dict a str python

new_d = {str(key): str(value) for key, value in keys_values}
Delightful Dolphin