Introduction to the use of the Encode () method in Python

Source: Internet
Author: User
Tags error handling in python

This article mainly introduces the use of the Encode () method in Python, is the basic knowledge of Python introduction, the need for friends can refer to the

The Encode () method returns the encoded version of the string. The default encoding is the current default string encoding. A different error handling mechanism can be given.

Grammar

The following is the syntax for the Encode () method:

?

1 Str.encode (encoding= ' UTF-8 ', errors= ' strict ')

Parameters

Encoding-This is the encoding used. For a list of all encoding schemes, please visit: Standard Code Library

Errors-This may be given a different error-handling mechanism. The default error is "Strict", that is, the coding error is presented unicodeerror. Other possible values are ignore ', ' replace ', ' xmlcharrefreplace ', ' backslashreplace ' and through Codecs.register_error (). Any other name registered.

return value

The encoded version of the string returned by this method.

Example

The following example shows the use of the Encode () method.

?

1 2 3 4 5 #!/usr/bin/python str = "This is string Example....wow!!!"; Print "encoded String:" + str.encode (' base64 ', ' strict ')

When we run the above program, it produces the following results:

?

1 Encoded string:dghpcybpcybzdhjpbmcgzxhhbxbszs4uli53b3chise=
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.