What is the difference between str and repr in python

爱喝马黛茶的安东尼
Release: 2019-06-24 10:34:14
Original
5213 people have browsed it

What is the difference between str and repr in python

#What is the difference between str and repr in python? The following is a detailed introduction to you:

1. The built-in functions str() and repr() or the backtick operator (``) can easily obtain the content and type of the object in the form of a string. , numerical attributes and other information.

2. The string obtained by the str() function is readable (so it is called by print)

3. The string obtained by the repr() function can usually be used to regain the object. , Under normal circumstances, the equation obj==eval(repr(obj)) is established. These two functions accept an object as their parameter and return the appropriate string.

Related recommendations: "Python Video Tutorial"

4. In fact, repr() and `` do the same thing, returning the "official" string of an object express. As a result, in most cases (but not all), the object can be retrieved through evaluation operation (built-in function eval()).

str() is different. It generates a readable string representation of an object. The result usually cannot be evaluated with eval(), but is suitable for print output.

a = 'Hello, world.'
b = str(a)
c = eval(repr(a))
print a==b
print a==c
print str(a)   #对用户友好
print repr(a)  # 对python友好
Copy after login

The results are as follows:

True
False
True
Hello, world.  
'Hello, world.'
Copy after login

The above is the detailed content of What is the difference between str and repr in python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!