关于python __str__ and __repr__
2021/12/25 20:10:14
本文主要是介绍关于python __str__ and __repr__,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#说白了str是为了利用print(函数名)输出格式的时候可以显示这__str__里边儿的内容,用__repr__纯粹就是程序员在调试程序的时候不愿意多费时间去手打那个print()而想出来的函数。真的绝(闲)
(注:代码抄自博主 行尸走肉)
class Person(object): def __init__(self, name, gender): self.name = name self.gender = gender class Student(Person): def __init__(self, name, gender, score): super(Student, self).__init__(name, gender) self.score = score def __str__(self): return '(Student: %s, %s, %s)' % (self.name, self.gender, self.score) __repr__ = __str__ s = Student('Bob', 'male', 88) print(s)
这篇关于关于python __str__ and __repr__的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型