1.调用某方法,其参数为另一方法名称,调用关系?
2.Python格式化字符串
3.queue使用
https://github.com/yongxinz/tech-blog
4.当v=某函数调用;当某函数没有返回值时,v的值是None;
5.a=[],a的值不是None
6.类中重写def __str__(self):xxx;则再print 类对象时,将是__str__方法中的内容;
7.类中重写def __repr__(self):xxx;则再直接敲类对象,还是print 类对象时,将是__repr__方法中的内容输出;
8.类中重写def __str__(self):xxx; 跟def同级,进行__repr__=__str__;则再直接敲类对象,还是print 类对象时,将是__str__方法中的内容输出;
9.