Python Pandas Decimal Mark EU to US
问题 I red the mails about EU to US decimal mark conversion, these helped a lot, but I'm still feeling to need some help from the experts .. My datas are from an ERP system with numbers in the format like "1'000'000,32" and I'd like simply to convert into something like "1000000.32" for further processing in Pandas. My actual solution to obtain the US format starting from the EU looks like: ... # read_csv and merge, clean .. different CSV files # result = merge (some_DataFrame_EU_format, ...) ...