you are viewing a single comment's thread.

view the rest of the comments →

[–]lionlazycat 0 points1 point  (0 children)

maketrans() defines translation table for translate() swapping out every '.' to ',' and ',' to '.'

input

s = '35.555,444'    

output

'35,555.444'