Python Object-oriented-----__str__ method

Source: Internet
Author: User

The role of 1.__str__

When the object is printed, the content defined in __STR__ is returned.

Example:

classpeople:def __init__(self,name,age,sex): Self.name=name Self.age=Age Self.sex=Sexdef __str__(self):#triggering execution when an object is printed        return '<name:%s age:%s sex:%s>'% (Self.name,self.age,self.sex)#only strings can be returnedP1=people ('User01', 18,'male') P2=people ('Xiao Ming', 38,'male')Print(p1)#directly print the class to get the return value of __str__ in the classPrint(p2)

Python Object-oriented-----__str__ method

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.