摘要: 1 """ 2 This script illustrate the usage of escape symbol %%. In general, it is used in mutil-formatted string. when a string is 3 formatted , %% can 阅读全文
posted @ 2019-02-07 14:39 JohnYang819 阅读(163) 评论(0) 推荐(0)
摘要: (1)背景 python中,对于类(自定义类)的实例对象的默认显示既没有太大用处,也不美观。比如: 1 class adder: 2 def __init__(self,value=0): 3 self.data=value #初始化数据 4 def __add__(self,other): 5 s 阅读全文
posted @ 2019-02-07 14:27 JohnYang819 阅读(438) 评论(0) 推荐(0)