dict à la table de chaîne python
my_tuple = {"a": 1, "b": 3}
print("Tuple to array: ")
out_put = [f'{key}: {value}' for key, value in my_tuple.items()]
print(out_put)
Motionless Manx