Convert from us number to iso number

PHOTO EMBED

Thu Apr 20 2023 09:49:53 GMT+0000 (Coordinated Universal Time)

Saved by @jmbenedetto #python

def converter_formato_numero(df_col):
    """
    (df_col)-->(df_col)

    """
    return df_col.str.strip().str.replace('.','').str.replace(',','.').str.replace('-','0')
content_copyCOPY