Series.str can be used to access the values of the series as strings and apply several methods to it. Pandas
Series.str.encode() function is used to encode character string in the Series/Index using indicated encoding. Equivalent to
str.encode().
Syntax: Series.str.encode(encoding, errors='strict')
Parameter :
encoding : str
errors : str, optional
Returns : encoded : Series/Index of objects
Example #1: Use
Series.str.encode() function to encode the character strings present in the underlying data of the given series object. Use 'raw_unicode_escape' for encoding.
Output :
👁 Image
Now we will use
Series.str.encode() function to encode the character strings present in the underlying data of the given series object.
Output :
👁 Image
As we can see in the output, the
Series.str.encode() function has successfully encoded the strings in the given series object.
Example #2 : Use
Series.str.encode() function to encode the character strings present in the underlying data of the given series object. Use 'punycode' for encoding.
Output :
👁 Image
Now we will use
Series.str.encode() function to encode the character strings present in the underlying data of the given series object.
Output :
👁 Image
As we can see in the output, the
Series.str.encode() function has successfully encoded the strings in the given series object.