convertir toutes les clés de dict à Str Python
new_d = {str(key): str(value) for key, value in keys_values}
Delightful Dolphin
new_d = {str(key): str(value) for key, value in keys_values}