pandas.Series.str.normalize — pandas 0.18.1 documentation (original) (raw)
Series.str.normalize(form)¶
Return the Unicode normal form for the strings in the Series/Index. For more information on the forms, see theunicodedata.normalize().
Parameters: | form : {‘NFC’, ‘NFKC’, ‘NFD’, ‘NFKD’} Unicode form |
---|---|
Returns: | normalized : Series/Index of objects |