Differences between Python STR and Repr

Source: Internet
Author: User

Although STR (), repr () and ''operations are very similar in terms of features and functions, in fact repr () and'' do exactly the same thing, they return an object's "official" string representation. That is to say, in most cases, this object can be re-obtained through evaluate (using the built-in function eval (), but STR () it is different. STR () is used to generate a readable string representation of an object. Its returned results cannot be used for eval () evaluation, but are suitable for print statement output. Note that not all strings returned by repr () can use the eval () built-in function to obtain the original object.

That is to say, repr () outputs are friendly to Python, while STR () outputs are friendly to users. Even so, in many cases, the output of the three items is still the same.

If you are interested, you can writeCodeCompare STR, repr, and "".

Address: http://www.cnpythoner.com/post/251.html

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.