79417777

Date: 2025-02-06 11:52:50
Score: 0.5
Natty:
Report link

Probably you are after for this?

d = {"A" : 123.02, "B": 12.3}
for key in d.keys():
    d[key] = str(d[key])

such that print(d) shows

{'A': '123.02', 'B': '12.3'}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: ThomasIsCoding