python打印输出字符串,python 字符串打印每个字符
1、说明
__str__主要用于打印函数和字符串函数str的转换运算。
__repr__适用于所有输出操作。如果有print和str操作,并且定义了__str__的话,__str__将优先。
当__repr__和__str__未定义时,默认情况下打印输出对象地址信息。
2、实例
#str.pyclassDisplayClass:
__repr__isusedeverywhere,exceptbyprintandstrwhena _ _ str _ _已定义。
_ _ str _ _ tosupportprintandstrexcluslly
def__repr__(self):
返回“显示__repr__class”
def__str__(self):
以命令行的形式返回 display _ _ str _ _ class # Print out 2 . x3 . x,输出效果相同。以2.x为截图d=DisplayClass()d#调用reproprint (d) #调用strprint (repro (d)) #调用reproprint (str (d)) #调用str。以上是python打印字符串的方式。更多python学习方向:Python基础课程
本教程运行环境:windows7系统,Python 3.9.1,DELL G3电脑。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。